diff --git a/rollout/v1alpha1/shared_types.go b/rollout/v1alpha1/shared_types.go index dacc991..93a55ed 100644 --- a/rollout/v1alpha1/shared_types.go +++ b/rollout/v1alpha1/shared_types.go @@ -116,3 +116,13 @@ type CanaryProgressingInfo struct{} type BatchProgressingInfo struct { CurrentBatchIndex int32 `json:"currentBatchIndex"` } + +const ( + RouteConditionTypeReady = "Ready" + RouteConditionTypeSynced = "Synced" +) + +// RouteConditionExtension contains the conditions of route +type RouteConditionExtension struct { + Conditions []metav1.Condition `json:"conditions,omitempty"` +}