package deploymentconfig import ( "fmt" "strconv" "github.com/golang/glog" kapi "github.com/GoogleCloudPlatform/kubernetes/pkg/api" "github.com/GoogleCloudPlatform/kubernetes/pkg/api/errors" "github.com/GoogleCloudPlatform/kubernetes/pkg/client/record" deployapi "github.com/openshift/origin/pkg/deploy/api" deployutil "github.com/openshift/origin/pkg/deploy/util" ) // DeploymentConfigController is responsible for creating a new deployment when: // // 1. The config version is > 0 and, // 2. No existing deployment for that version exists. // // The responsibility of constructing a new deployment resource from a config // is delegated. See util.MakeDeployment for more details. The new deployment // will have DesiredReplicasAnnotation set to the desired replica count for // the new deployment based on the replica count of the previous/active // deployment. // // Use the DeploymentConfigControllerFactory to create this controller. type DeploymentConfigController struct { // deploymentClient provides access to deployments. deploymentClient deploymentClient // makeDeployment knows how to make a deployment from a config. makeDeployment func(*deployapi.DeploymentConfig) (*kapi.ReplicationController, error) recorder record.EventRecorder } // fatalError is an error which can't be retried. type fatalError string // transientError is an error which should always be retried (indefinitely). type transientError string func (e fatalError) Error() string { return "fatal error handling deploymentConfig: " + string(e) } func (e transientError) Error() string { return "transient error handling deploymentConfig: " + string(e) } // Handle processes config and creates a new deployment if necessary. func (c *DeploymentConfigController) Handle(config *deployapi.DeploymentConfig) error { // Only deploy when the version has advanced past 0. if config.LatestVersion == 0 { glog.V(5).Infof("Waiting for first version of %s", deployutil.LabelForDeploymentConfig(config)) return nil } // Check if the latest deployment already exists if deployment, err := c.deploymentClient.getDeployment(config.Namespace, deployutil.LatestDeploymentNameForConfig(config)); err != nil { if !errors.IsNotFound(err) { return fmt.Errorf("couldn't get deployment for config %s: %v", deployutil.LabelForDeploymentConfig(config), err) } } else { // If there's an existing deployment, nothing needs to be done. if deployment != nil { return nil } } // Check if any previous deployment is still running (any non-terminal state). existingDeployments, err := c.deploymentClient.listDeploymentsForConfig(config.Namespace, config.Name) if err != nil { return fmt.Errorf("couldn't list deployments for config %s: %v", deployutil.LabelForDeploymentConfig(config), err) } for _, deployment := range existingDeployments.Items { deploymentStatus := deployutil.DeploymentStatusFor(&deployment) switch deploymentStatus { case deployapi.DeploymentStatusFailed, deployapi.DeploymentStatusComplete: // Previous deployment in terminal state - can ignore // Ignoring specific deployment states so that any new // deployment state will not be ignored default: glog.V(4).Infof("Found previous deployment %s (status %s) - will requeue", deployutil.LabelForDeployment(&deployment), deploymentStatus) return transientError(fmt.Sprintf("found previous deployment (state: %s) for %s - requeuing", deploymentStatus, deployutil.LabelForDeploymentConfig(config))) } } // Try and build a deployment for the config. deployment, err := c.makeDeployment(config) if err != nil { return fatalError(fmt.Sprintf("couldn't make deployment from (potentially invalid) config %s: %v", deployutil.LabelForDeploymentConfig(config), err)) } // Compute the desired replicas for the deployment. The count should match // the existing deployment replica count. To find this, simply sum the // replicas of existing deployments for this config. Any deactivated // deployments should already be scaled down to zero, and so the sum should // reflect the count of the latest active deployment. // // If there are no existing deployments, use the replica count from the // config template. desiredReplicas := config.Template.ControllerTemplate.Replicas if len(existingDeployments.Items) > 0 { desiredReplicas = 0 for _, existing := range existingDeployments.Items { desiredReplicas += existing.Spec.Replicas } } deployment.Annotations[deployapi.DesiredReplicasAnnotation] = strconv.Itoa(desiredReplicas) // Create the deployment. if _, err := c.deploymentClient.createDeployment(config.Namespace, deployment); err == nil { glog.V(4).Infof("Created deployment for config %s", deployutil.LabelForDeploymentConfig(config)) return nil } else { // If the deployment was already created, just move on. The cache could be stale, or another // process could have already handled this update. if errors.IsAlreadyExists(err) { c.recorder.Eventf(config, "alreadyExists", "Deployment already exists for config: %s", deployutil.LabelForDeploymentConfig(config)) glog.V(4).Infof("Deployment already exists for config %s", deployutil.LabelForDeploymentConfig(config)) return nil } // log an event if the deployment could not be created that the user can discover c.recorder.Eventf(config, "failedCreate", "Error creating: %v", err) return fmt.Errorf("couldn't create deployment for config %s: %v", deployutil.LabelForDeploymentConfig(config), err) } } // deploymentClient abstracts access to deployments. type deploymentClient interface { getDeployment(namespace, name string) (*kapi.ReplicationController, error) createDeployment(namespace string, deployment *kapi.ReplicationController) (*kapi.ReplicationController, error) // listDeploymentsForConfig should return deployments associated with the // provided config. listDeploymentsForConfig(namespace, configName string) (*kapi.ReplicationControllerList, error) } // deploymentClientImpl is a pluggable deploymentClient. type deploymentClientImpl struct { getDeploymentFunc func(namespace, name string) (*kapi.ReplicationController, error) createDeploymentFunc func(namespace string, deployment *kapi.ReplicationController) (*kapi.ReplicationController, error) listDeploymentsForConfigFunc func(namespace, configName string) (*kapi.ReplicationControllerList, error) } func (i *deploymentClientImpl) getDeployment(namespace, name string) (*kapi.ReplicationController, error) { return i.getDeploymentFunc(namespace, name) } func (i *deploymentClientImpl) createDeployment(namespace string, deployment *kapi.ReplicationController) (*kapi.ReplicationController, error) { return i.createDeploymentFunc(namespace, deployment) } func (i *deploymentClientImpl) listDeploymentsForConfig(namespace, configName string) (*kapi.ReplicationControllerList, error) { return i.listDeploymentsForConfigFunc(namespace, configName) }