You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Fix error message for push command
Signed-off-by: João Pereira <joao.pereira@broadcom.com>
* Display current step in the canary deployment
Signed-off-by: João Pereira <joao.pereira@broadcom.com>
* Fix canary steps tests
* Fix continue test instance-step command
* Fix integration test for canary
---------
Signed-off-by: João Pereira <joao.pereira@broadcom.com>
Co-authored-by: Sam Gunaratne <385176+Samze@users.noreply.github.com>
Co-authored-by: Sam Gunaratne <sgunaratne@vmware.com>
@@ -55,6 +55,7 @@ var _ = Describe("push with --strategy canary", func() {
55
55
Expect(session).To(Say("Active deployment with status PAUSED"))
56
56
Expect(session).To(Say("strategy: canary"))
57
57
Expect(session).To(Say("max-in-flight: 1"))
58
+
Expect(session).To(Say("canary-steps: 1/2"))
58
59
Expect(session).To(Say("Please run `cf continue-deployment %s` to promote the canary deployment, or `cf cancel-deployment %s` to rollback to the previous version.", appName, appName))
59
60
Expect(session).To(Exit(0))
60
61
})
@@ -86,6 +87,7 @@ var _ = Describe("push with --strategy canary", func() {
86
87
Expect(session).To(Say("Active deployment with status PAUSED"))
87
88
Expect(session).To(Say("strategy: canary"))
88
89
Expect(session).To(Say("max-in-flight: 2"))
90
+
Expect(session).To(Say("canary-steps: 1/1"))
89
91
Expect(session).To(Say("Please run `cf continue-deployment %s` to promote the canary deployment, or `cf cancel-deployment %s` to rollback to the previous version.", appName, appName))
0 commit comments