Struct k8s_openapi::api::batch::v1::PodFailurePolicyRule
source · pub struct PodFailurePolicyRule {
pub action: String,
pub on_exit_codes: Option<PodFailurePolicyOnExitCodesRequirement>,
pub on_pod_conditions: Vec<PodFailurePolicyOnPodConditionsPattern>,
}
Expand description
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.
Fields§
§action: String
Specifies 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 running pods are terminated.
- Ignore: indicates that the counter towards the .backoffLimit is not incremented and a replacement pod is created.
- Count: indicates that the pod is handled in the default way - the counter towards the .backoffLimit is incremented. Additional values are considered to be added in the future. Clients should react to an unknown action by skipping the rule.
on_exit_codes: Option<PodFailurePolicyOnExitCodesRequirement>
Represents the requirement on the container exit codes.
on_pod_conditions: Vec<PodFailurePolicyOnPodConditionsPattern>
Represents 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.
Trait Implementations§
source§impl Clone for PodFailurePolicyRule
impl Clone for PodFailurePolicyRule
source§fn clone(&self) -> PodFailurePolicyRule
fn clone(&self) -> PodFailurePolicyRule
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for PodFailurePolicyRule
impl Debug for PodFailurePolicyRule
source§impl DeepMerge for PodFailurePolicyRule
impl DeepMerge for PodFailurePolicyRule
source§fn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
Merge
other
into self
.source§impl Default for PodFailurePolicyRule
impl Default for PodFailurePolicyRule
source§fn default() -> PodFailurePolicyRule
fn default() -> PodFailurePolicyRule
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for PodFailurePolicyRule
impl<'de> Deserialize<'de> for PodFailurePolicyRule
source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<PodFailurePolicyRule> for PodFailurePolicyRule
impl PartialEq<PodFailurePolicyRule> for PodFailurePolicyRule
source§fn eq(&self, other: &PodFailurePolicyRule) -> bool
fn eq(&self, other: &PodFailurePolicyRule) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.