From 094de4ef4973f7253c36f9f1b94b727050489100 Mon Sep 17 00:00:00 2001 From: Chao Xu Date: Fri, 4 Nov 2016 20:42:22 -0700 Subject: [PATCH] copy PodInitialized conditon to v1 --- pkg/api/v1/types.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/api/v1/types.go b/pkg/api/v1/types.go index 7958bafdf58..a616d2f371b 100644 --- a/pkg/api/v1/types.go +++ b/pkg/api/v1/types.go @@ -1630,6 +1630,8 @@ const ( // PodReady means the pod is able to service requests and should be added to the // load balancing pools of all matching services. PodReady PodConditionType = "Ready" + // PodInitialized means that all init containers in the pod have started successfully. + PodInitialized PodConditionType = "Initialized" // PodReasonUnschedulable reason in PodScheduled PodCondition means that the scheduler // can't schedule the pod right now, for example due to insufficient resources in the cluster. PodReasonUnschedulable = "Unschedulable"