Add initializing canary phase/status condition reason

Fix HPA reconciliation min replicas diff
This commit is contained in:
stefanprodan
2019-07-09 17:10:43 +03:00
parent 438f952128
commit 108bf9ca65
6 changed files with 52 additions and 16 deletions
+2
View File
@@ -38,6 +38,8 @@ type CanaryCondition struct {
type CanaryPhase string
const (
// CanaryPhaseInitializing means the canary initializing is underway
CanaryPhaseInitializing CanaryPhase = "Initializing"
// CanaryPhaseInitialized means the primary deployment, hpa and ClusterIP services
// have been created along with the service mesh or ingress objects
CanaryPhaseInitialized CanaryPhase = "Initialized"