Class PodFailurePolicyOnExitCodesRequirement
- java.lang.Object
-
- io.fabric8.kubernetes.api.model.batch.v1.PodFailurePolicyOnExitCodesRequirement
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<PodFailurePolicyOnExitCodesRequirementBuilder>,io.fabric8.kubernetes.api.model.KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class PodFailurePolicyOnExitCodesRequirement extends Object implements io.fabric8.kubernetes.api.builder.Editable<PodFailurePolicyOnExitCodesRequirementBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource
PodFailurePolicyOnExitCodesRequirement describes the requirement for handling a failed pod based on its container exit codes. In particular, it lookups the .state.terminated.exitCode for each app container and init container status, represented by the .status.containerStatuses and .status.initContainerStatuses fields in the Pod status, respectively. Containers completed with success (exit code 0) are excluded from the requirement check.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PodFailurePolicyOnExitCodesRequirement()No args constructor for use in serializationPodFailurePolicyOnExitCodesRequirement(String containerName, String operator, List<Integer> values)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PodFailurePolicyOnExitCodesRequirementBuilderedit()Map<String,Object>getAdditionalProperties()StringgetContainerName()Restricts the check for exit codes to the container with the specified name.StringgetOperator()Represents the relationship between the container exit code(s) and the specified values.List<Integer>getValues()Specifies the set of values.voidsetAdditionalProperties(Map<String,Object> additionalProperties)voidsetAdditionalProperty(String name, Object value)voidsetContainerName(String containerName)Restricts the check for exit codes to the container with the specified name.voidsetOperator(String operator)Represents the relationship between the container exit code(s) and the specified values.voidsetValues(List<Integer> values)Specifies the set of values.PodFailurePolicyOnExitCodesRequirementBuildertoBuilder()
-
-
-
Method Detail
-
getContainerName
public String getContainerName()
Restricts 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.
-
setContainerName
public void setContainerName(String containerName)
Restricts 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.
-
getOperator
public String getOperator()
Represents 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
(might be multiple if there are multiple containers not restricted
by the 'containerName' field) is in the set of specified values.
- NotIn: the requirement is satisfied if at least one container exit code
(might be multiple if there are multiple containers not restricted
by the 'containerName' field) is not in the set of specified values.
Additional values are considered to be added in the future. Clients should react to an unknown operator by assuming the requirement is not satisfied.
-
setOperator
public void setOperator(String operator)
Represents 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
(might be multiple if there are multiple containers not restricted
by the 'containerName' field) is in the set of specified values.
- NotIn: the requirement is satisfied if at least one container exit code
(might be multiple if there are multiple containers not restricted
by the 'containerName' field) is not in the set of specified values.
Additional values are considered to be added in the future. Clients should react to an unknown operator by assuming the requirement is not satisfied.
-
getValues
public List<Integer> getValues()
Specifies 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.
-
setValues
public void setValues(List<Integer> values)
Specifies 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.
-
edit
public PodFailurePolicyOnExitCodesRequirementBuilder edit()
- Specified by:
editin interfaceio.fabric8.kubernetes.api.builder.Editable<PodFailurePolicyOnExitCodesRequirementBuilder>
-
toBuilder
public PodFailurePolicyOnExitCodesRequirementBuilder toBuilder()
-
-