Skip to content

Commit 052e116

Browse files
committed
Cleanup duplicate checking for empty images in DC controller loop
1 parent feacccc commit 052e116

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

pkg/apps/controller/deploymentconfig/deploymentconfig_controller.go

-8
Original file line numberDiff line numberDiff line change
@@ -181,14 +181,6 @@ func (c *DeploymentConfigController) Handle(config *appsapi.DeploymentConfig) er
181181
return c.reconcileDeployments(existingDeployments, config, cm)
182182
}
183183

184-
// Never deploy with invalid or unresolved images
185-
for i, container := range config.Spec.Template.Spec.Containers {
186-
if len(strings.TrimSpace(container.Image)) == 0 {
187-
glog.V(4).Infof("Postponing rollout #%d for DeploymentConfig %s/%s because of invalid or unresolved image for container #%d (name=%s)", config.Status.LatestVersion, config.Namespace, config.Name, i, container.Name)
188-
return c.updateStatus(config, existingDeployments, true)
189-
}
190-
}
191-
192184
// No deployments are running and the latest deployment doesn't exist, so
193185
// create the new deployment.
194186
deployment, err := appsutil.MakeDeploymentV1(config, c.codec)

0 commit comments

Comments
 (0)