Add finalising status phase to CRD

This commit is contained in:
stefanprodan
2019-07-29 13:43:30 +03:00
parent e4905d3d35
commit 69875cb3dc
4 changed files with 5 additions and 0 deletions
+1
View File
@@ -176,6 +176,7 @@ spec:
- Initialized
- Waiting
- Progressing
- Finalising
- Succeeded
- Failed
canaryWeight:
+1
View File
@@ -177,6 +177,7 @@ spec:
- Initialized
- Waiting
- Progressing
- Finalising
- Succeeded
- Failed
canaryWeight:
+1
View File
@@ -176,6 +176,7 @@ spec:
- Initialized
- Waiting
- Progressing
- Finalising
- Succeeded
- Failed
canaryWeight:
+2
View File
@@ -47,6 +47,8 @@ const (
CanaryPhaseWaiting CanaryPhase = "Waiting"
// CanaryPhaseProgressing means the canary analysis is underway
CanaryPhaseProgressing CanaryPhase = "Progressing"
// CanaryPhaseProgressing means the canary analysis is finished and traffic has been routed back to primary
CanaryPhaseFinalising CanaryPhase = "Finalising"
// CanaryPhaseSucceeded means the canary analysis has been successful
// and the canary deployment has been promoted
CanaryPhaseSucceeded CanaryPhase = "Succeeded"