introduction of finalizer

This commit is contained in:
Tanner Altares
2020-03-20 15:13:51 -05:00
parent 52d9951eb9
commit b39add9ee6
13 changed files with 445 additions and 3 deletions
+6
View File
@@ -57,6 +57,12 @@ const (
// CanaryPhaseFailed means the canary analysis failed
// and the canary deployment has been scaled to zero
CanaryPhaseFailed CanaryPhase = "Failed"
// CanaryPhaseTerminating means the canary has been marked
// for deletion and in the finalizing state
CanaryPhaseTerminating CanaryPhase = "Terminating"
// CanaryPhaseTerminated means the canary has been finalized
// and successfully deleted
CanaryPhaseTerminated CanaryPhase = "Terminated"
)
// CanaryStatus is used for state persistence (read-only)