@@ -121,16 +121,16 @@ func (c *DeploymentConfigController) Handle(config *deployapi.DeploymentConfig)
121
121
return c .updateStatus (config , existingDeployments )
122
122
}
123
123
124
- latestIsDeployed , latestDeployment := deployutil .LatestDeploymentInfo (config , existingDeployments )
124
+ latestExists , latestDeployment := deployutil .LatestDeploymentInfo (config , existingDeployments )
125
125
126
- if ! latestIsDeployed {
126
+ if ! latestExists {
127
127
if err := c .cancelRunningRollouts (config , existingDeployments , cm ); err != nil {
128
128
return err
129
129
}
130
130
}
131
131
configCopy := config .DeepCopy ()
132
132
// 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 )
134
134
if ! shouldSkip && shouldTrigger {
135
135
configCopy .Status .LatestVersion ++
136
136
return c .updateStatus (configCopy , existingDeployments )
@@ -141,18 +141,7 @@ func (c *DeploymentConfigController) Handle(config *deployapi.DeploymentConfig)
141
141
}
142
142
// If the latest deployment already exists, reconcile existing deployments
143
143
// 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 {
156
145
// If the latest deployment is still running, try again later. We don't
157
146
// want to compete with the deployer.
158
147
if ! deployutil .IsTerminatedDeployment (latestDeployment ) {
@@ -530,7 +519,7 @@ func (c *DeploymentConfigController) cleanupOldDeployments(existingDeployments [
530
519
// triggers were activated (config change or image change). The first bool indicates that
531
520
// the triggers are active and second indicates if we should skip the rollout because we
532
521
// 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 ) {
534
523
if config .Spec .Paused {
535
524
return false , false
536
525
}
@@ -569,7 +558,7 @@ func triggerActivated(config *deployapi.DeploymentConfig, latestIsDeployed bool,
569
558
}
570
559
571
560
// Wait for the RC to be created
572
- if ! latestIsDeployed {
561
+ if ! latestExists {
573
562
return false , true
574
563
}
575
564
0 commit comments