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
sourceimpl Clone for PodFailurePolicyRule
impl Clone for PodFailurePolicyRule
sourcefn clone(&self) -> PodFailurePolicyRule
fn clone(&self) -> PodFailurePolicyRule
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for PodFailurePolicyRule
impl Debug for PodFailurePolicyRule
sourceimpl DeepMerge for PodFailurePolicyRule
impl DeepMerge for PodFailurePolicyRule
sourcefn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
Merge other
into self
.
sourceimpl Default for PodFailurePolicyRule
impl Default for PodFailurePolicyRule
sourcefn default() -> PodFailurePolicyRule
fn default() -> PodFailurePolicyRule
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for PodFailurePolicyRule
impl<'de> Deserialize<'de> for PodFailurePolicyRule
sourcefn 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
sourceimpl PartialEq<PodFailurePolicyRule> for PodFailurePolicyRule
impl PartialEq<PodFailurePolicyRule> for PodFailurePolicyRule
sourcefn 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 ==
. Read more
sourceimpl Serialize for PodFailurePolicyRule
impl Serialize for PodFailurePolicyRule
impl StructuralPartialEq for PodFailurePolicyRule
Auto Trait Implementations
impl RefUnwindSafe for PodFailurePolicyRule
impl Send for PodFailurePolicyRule
impl Sync for PodFailurePolicyRule
impl Unpin for PodFailurePolicyRule
impl UnwindSafe for PodFailurePolicyRule
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more