Skip to content

Commit 086cc82

Browse files
committed
Fixup variable names in DC controller
1 parent fe4f498 commit 086cc82

File tree

1 file changed

+6
-17
lines changed

1 file changed

+6
-17
lines changed

pkg/apps/controller/deploymentconfig/deploymentconfig_controller.go

+6-17
Original file line numberDiff line numberDiff line change
@@ -121,16 +121,16 @@ func (c *DeploymentConfigController) Handle(config *deployapi.DeploymentConfig)
121121
return c.updateStatus(config, existingDeployments)
122122
}
123123

124-
latestIsDeployed, latestDeployment := deployutil.LatestDeploymentInfo(config, existingDeployments)
124+
latestExists, latestDeployment := deployutil.LatestDeploymentInfo(config, existingDeployments)
125125

126-
if !latestIsDeployed {
126+
if !latestExists {
127127
if err := c.cancelRunningRollouts(config, existingDeployments, cm); err != nil {
128128
return err
129129
}
130130
}
131131
configCopy := config.DeepCopy()
132132
// Process triggers and start an initial rollouts
133-
shouldTrigger, shouldSkip := triggerActivated(configCopy, latestIsDeployed, latestDeployment, c.codec)
133+
shouldTrigger, shouldSkip := triggerActivated(configCopy, latestExists, latestDeployment, c.codec)
134134
if !shouldSkip && shouldTrigger {
135135
configCopy.Status.LatestVersion++
136136
return c.updateStatus(configCopy, existingDeployments)
@@ -141,18 +141,7 @@ func (c *DeploymentConfigController) Handle(config *deployapi.DeploymentConfig)
141141
}
142142
// If the latest deployment already exists, reconcile existing deployments
143143
// and return early.
144-
if latestIsDeployed {
145-
// If the latest deployment is still running, try again later. We don't
146-
// want to compete with the deployer.
147-
if !deployutil.IsTerminatedDeployment(latestDeployment) {
148-
return c.updateStatus(config, existingDeployments)
149-
}
150-
151-
return c.reconcileDeployments(existingDeployments, config, cm)
152-
}
153-
// If the latest deployment already exists, reconcile existing deployments
154-
// and return early.
155-
if latestIsDeployed {
144+
if latestExists {
156145
// If the latest deployment is still running, try again later. We don't
157146
// want to compete with the deployer.
158147
if !deployutil.IsTerminatedDeployment(latestDeployment) {
@@ -530,7 +519,7 @@ func (c *DeploymentConfigController) cleanupOldDeployments(existingDeployments [
530519
// triggers were activated (config change or image change). The first bool indicates that
531520
// the triggers are active and second indicates if we should skip the rollout because we
532521
// are waiting for the trigger to complete update (waiting for image for example).
533-
func triggerActivated(config *deployapi.DeploymentConfig, latestIsDeployed bool, latestDeployment *v1.ReplicationController, codec runtime.Codec) (bool, bool) {
522+
func triggerActivated(config *deployapi.DeploymentConfig, latestExists bool, latestDeployment *v1.ReplicationController, codec runtime.Codec) (bool, bool) {
534523
if config.Spec.Paused {
535524
return false, false
536525
}
@@ -569,7 +558,7 @@ func triggerActivated(config *deployapi.DeploymentConfig, latestIsDeployed bool,
569558
}
570559

571560
// Wait for the RC to be created
572-
if !latestIsDeployed {
561+
if !latestExists {
573562
return false, true
574563
}
575564

0 commit comments

Comments
 (0)