PodFailurePolicyRule
io.k8s.api.batch.v1.PodFailurePolicyRule
source ↗
PodFailurePolicyRule describes how a pod failure is handled when the requirements are met. One of onExitCodes and onPodConditions, but not both, can be used in each rule.
actionstring requiredSpecifies the action taken on a pod failure when the requirements are satisfied. Possible values are:- FailJob: indicates that the pod's job is marked as Failed and all
- FailIndex: indicates that the pod's index is marked as Failed and will
- Ignore: indicates that the counter towards the .backoffLimit is not
- Count: indicates that the pod is handled in the default way - the
onExitCodesPodFailurePolicyOnExitCodesRequirementRepresents the requirement on the container exit codes.
containerNamestringRestricts the check for exit codes to the container with the specified name. When null, the rule applies to all containers. When specified, it should match one the container or initContainer names in the pod template.operatorstring requiredRepresents the relationship between the container exit code(s) and the specified values. Containers completed with success (exit code 0) are excluded from the requirement check. Possible values are:- In: the requirement is satisfied if at least one container exit code
- NotIn: the requirement is satisfied if at least one container exit code
values[]integer (int32) requiredSpecifies the set of values. Each returned container exit code (might be multiple in case of multiple containers) is checked against this set of values with respect to the operator. The list of values must be ordered and must not contain duplicates. Value '0' cannot be used for the In operator. At least one element is required. At most 255 elements are allowed.onPodConditions[]PodFailurePolicyOnPodConditionsPatternRepresents the requirement on the pod conditions. The requirement is represented as a list of pod condition patterns. The requirement is satisfied if at least one pattern matches an actual pod condition. At most 20 elements are allowed.
statusstring requiredSpecifies the required Pod condition status. To match a pod condition it is required that the specified status equals the pod condition status. Defaults to True.typestring requiredSpecifies the required Pod condition type. To match a pod condition it is required that specified type equals the pod condition type.