File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -3530,6 +3530,8 @@ const (
35303530 // If both PodResizePending and PodResizeInProgress are set, it means that a new resize was
35313531 // requested in the middle of a previous pod resize that is still in progress.
35323532 PodResizeInProgress PodConditionType = "PodResizeInProgress"
3533+ // AllContainersRestarting indicates that all containers of the pod is being restarted.
3534+ AllContainersRestarting PodConditionType = "AllContainersRestarting"
35333535)
35343536
35353537// These are reasons for a pod's transition to a condition.
@@ -3666,7 +3668,8 @@ type ContainerRestartRuleAction string
36663668
36673669// The only valid action is Restart.
36683670const (
3669- ContainerRestartRuleActionRestart ContainerRestartRuleAction = "Restart"
3671+ ContainerRestartRuleActionRestart ContainerRestartRuleAction = "Restart"
3672+ ContainerRestartRuleActionRestartAllContainers ContainerRestartRuleAction = "RestartAllContainers"
36703673)
36713674
36723675// ContainerRestartRuleOnExitCodes describes the condition
You can’t perform that action at this time.
0 commit comments