Skip to content

Commit 24fa302

Browse files
committed
deploy: set condition reason correctly for new RCs
1 parent 125ed10 commit 24fa302

File tree

3 files changed

+66
-1
lines changed

3 files changed

+66
-1
lines changed

pkg/deploy/controller/deploymentconfig/controller.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ func (c *DeploymentConfigController) Handle(config *deployapi.DeploymentConfig)
196196
c.recorder.Eventf(config, kapi.EventTypeWarning, "DeploymentCleanupFailed", "Couldn't clean up deployments: %v", err)
197197
}
198198

199-
cond := deployutil.NewDeploymentCondition(deployapi.DeploymentProgressing, kapi.ConditionTrue, deployutil.NewRcAvailableReason, msg)
199+
cond := deployutil.NewDeploymentCondition(deployapi.DeploymentProgressing, kapi.ConditionTrue, deployutil.NewReplicationControllerReason, msg)
200200
return c.updateStatus(config, existingDeployments, *cond)
201201
}
202202

test/extended/deployments/deployments.go

+42
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ var _ = g.Describe("deploymentconfigs", func() {
4141
tagImagesFixture = exutil.FixturePath("testdata", "deployments", "tag-images-deployment.yaml")
4242
readinessFixture = exutil.FixturePath("testdata", "deployments", "readiness-test.yaml")
4343
envRefDeploymentFixture = exutil.FixturePath("testdata", "deployments", "deployment-with-ref-env.yaml")
44+
ignoresDeployersFixture = exutil.FixturePath("testdata", "deployments", "deployment-ignores-deployer.yaml")
4445
)
4546

4647
g.Describe("when run iteratively [Conformance]", func() {
@@ -302,6 +303,7 @@ var _ = g.Describe("deploymentconfigs", func() {
302303
o.Expect(out).To(o.ContainSubstring("hello bar"))
303304
})
304305
})
306+
305307
g.Describe("with multiple image change triggers [Conformance]", func() {
306308
g.AfterEach(func() {
307309
failureTrap(oc, "example", g.CurrentGinkgoTestDescription().Failed)
@@ -782,4 +784,44 @@ var _ = g.Describe("deploymentconfigs", func() {
782784
o.Expect(waitForLatestCondition(oc, name, deploymentRunTimeout, deploymentRunning)).NotTo(o.HaveOccurred())
783785
})
784786
})
787+
788+
g.Describe("ignores deployer and lets the config with a NewReplicationControllerCreated reason [Conformance]", func() {
789+
g.AfterEach(func() {
790+
failureTrap(oc, "database", g.CurrentGinkgoTestDescription().Failed)
791+
})
792+
793+
g.It("should let the deployment config with a NewReplicationControllerCreated reason", func() {
794+
_, name, err := createFixture(oc, ignoresDeployersFixture)
795+
o.Expect(err).NotTo(o.HaveOccurred())
796+
797+
g.By("verifying that the deployment config is bumped to the first version")
798+
err = wait.PollImmediate(500*time.Millisecond, 30*time.Second, func() (bool, error) {
799+
dc, _, _, err := deploymentInfo(oc, name)
800+
if err != nil {
801+
return false, nil
802+
}
803+
return dc.Status.LatestVersion == 1, nil
804+
})
805+
if err == wait.ErrWaitTimeout {
806+
err = fmt.Errorf("deployment config %q never incremented to the first version", name)
807+
}
808+
o.Expect(err).NotTo(o.HaveOccurred())
809+
810+
g.By("verifying that the deployment config has the desired condition and reason")
811+
var conditions []deployapi.DeploymentCondition
812+
err = wait.PollImmediate(500*time.Millisecond, 30*time.Second, func() (bool, error) {
813+
dc, _, _, err := deploymentInfo(oc, name)
814+
if err != nil {
815+
return false, nil
816+
}
817+
conditions = dc.Status.Conditions
818+
cond := deployutil.GetDeploymentCondition(dc.Status, deployapi.DeploymentProgressing)
819+
return cond != nil && cond.Reason == deployutil.NewReplicationControllerReason, nil
820+
})
821+
if err == wait.ErrWaitTimeout {
822+
err = fmt.Errorf("deployment config %q never updated its conditions: %#v", name, conditions)
823+
}
824+
o.Expect(err).NotTo(o.HaveOccurred())
825+
})
826+
})
785827
})
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
apiVersion: v1
2+
kind: DeploymentConfig
3+
metadata:
4+
annotations:
5+
deploy.openshift.io/deployer-pod.ignore: "true"
6+
name: database
7+
spec:
8+
replicas: 1
9+
selector:
10+
name: database
11+
template:
12+
metadata:
13+
labels:
14+
name: database
15+
spec:
16+
terminationGracePeriodSeconds: 0
17+
containers:
18+
- image: "docker.io/centos:centos7"
19+
imagePullPolicy: IfNotPresent
20+
name: myapp
21+
command:
22+
- /bin/sleep
23+
- "10000"

0 commit comments

Comments
 (0)