mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-07 19:23:40 +00:00
Merge pull request #36284 from caesarxuchao/podinitialized
Automatic merge from submit-queue copy PodInitialized condition to v1 Copied from pkg/api/types.go I might batch this change with other similar changes, but want to gets this reviewed first. cc @dchen1107 @yujuhong
This commit is contained in:
commit
3624bf2ff4
@ -1633,6 +1633,8 @@ const (
|
|||||||
// PodReady means the pod is able to service requests and should be added to the
|
// PodReady means the pod is able to service requests and should be added to the
|
||||||
// load balancing pools of all matching services.
|
// load balancing pools of all matching services.
|
||||||
PodReady PodConditionType = "Ready"
|
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
|
// 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.
|
// can't schedule the pod right now, for example due to insufficient resources in the cluster.
|
||||||
PodReasonUnschedulable = "Unschedulable"
|
PodReasonUnschedulable = "Unschedulable"
|
||||||
|
Loading…
Reference in New Issue
Block a user