Struct k8s_openapi::api::batch::v1::PodFailurePolicyRule
source · pub struct PodFailurePolicyRule {
pub action: String,
pub on_exit_codes: Option<PodFailurePolicyOnExitCodesRequirement>,
pub on_pod_conditions: Option<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.
- FailIndex: indicates that the pod’s index is marked as Failed and will
not be restarted.
This value is beta-level. It can be used when the
JobBackoffLimitPerIndex
feature gate is enabled (enabled by default). - 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: Option<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 for PodFailurePolicyRule
impl PartialEq for PodFailurePolicyRule
source§impl Serialize for PodFailurePolicyRule
impl Serialize for PodFailurePolicyRule
impl StructuralPartialEq for PodFailurePolicyRule
Auto Trait Implementations§
impl Freeze for PodFailurePolicyRule
impl RefUnwindSafe for PodFailurePolicyRule
impl Send for PodFailurePolicyRule
impl Sync for PodFailurePolicyRule
impl Unpin for PodFailurePolicyRule
impl UnwindSafe for PodFailurePolicyRule
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)