pub struct DaemonSetSpec {
pub selector: Option<LabelSelector>,
pub template: Option<PodTemplateSpec>,
pub update_strategy: Option<DaemonSetUpdateStrategy>,
pub min_ready_seconds: Option<i32>,
pub revision_history_limit: Option<i32>,
}Expand description
DaemonSetSpec is the specification of a daemon set.
Fields§
§selector: Option<LabelSelector>A label query over pods that are managed by the daemon set. Must match in order to be controlled. It must match the pod template’s labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
template: Option<PodTemplateSpec>An object that describes the pod that will be created. The DaemonSet will create exactly one copy of this pod on every node that matches the template’s node selector (or on every node if no node selector is specified). The only allowed template.spec.restartPolicy value is “Always”. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template
update_strategy: Option<DaemonSetUpdateStrategy>An update strategy to replace existing DaemonSet pods with new pods. +optional
min_ready_seconds: Option<i32>The minimum number of seconds for which a newly created DaemonSet pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready). +optional
revision_history_limit: Option<i32>The number of old history to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10. +optional
Implementations§
Source§impl DaemonSetSpec
impl DaemonSetSpec
Sourcepub fn min_ready_seconds(&self) -> i32
pub fn min_ready_seconds(&self) -> i32
Returns the value of min_ready_seconds, or the default value if min_ready_seconds is unset.
Sourcepub fn revision_history_limit(&self) -> i32
pub fn revision_history_limit(&self) -> i32
Returns the value of revision_history_limit, or the default value if revision_history_limit is unset.
Trait Implementations§
Source§impl Clone for DaemonSetSpec
impl Clone for DaemonSetSpec
Source§fn clone(&self) -> DaemonSetSpec
fn clone(&self) -> DaemonSetSpec
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for DaemonSetSpec
impl Debug for DaemonSetSpec
Source§impl Default for DaemonSetSpec
impl Default for DaemonSetSpec
Source§impl Message for DaemonSetSpec
impl Message for DaemonSetSpec
Source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
Source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
Source§fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
Source§fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self. Read moreSource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self.