copy PodInitialized conditon to v1

This commit is contained in:
Chao Xu 2016-11-04 20:42:22 -07:00
parent 4d7960b0dd
commit 094de4ef49

View File

@ -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"