Struct k8s_openapi::api::apps::v1::StatefulSetSpec [−][src]
pub struct StatefulSetSpec { pub pod_management_policy: Option<String>, pub replicas: Option<i32>, pub revision_history_limit: Option<i32>, pub selector: LabelSelector, pub service_name: String, pub template: PodTemplateSpec, pub update_strategy: Option<StatefulSetUpdateStrategy>, pub volume_claim_templates: Option<Vec<PersistentVolumeClaim>>, }
Expand description
A StatefulSetSpec is the specification of a StatefulSet.
Fields
pod_management_policy: Option<String>
podManagementPolicy controls how pods are created during initial scale up, when replacing pods on nodes, or when scaling down. The default policy is OrderedReady
, where pods are created in increasing order (pod-0, then pod-1, etc) and the controller will wait until each pod is ready before continuing. When scaling down, the pods are removed in the opposite order. The alternative policy is Parallel
which will create pods in parallel to match the desired scale without waiting, and on scale down will delete all pods at once.
replicas: Option<i32>
replicas is the desired number of replicas of the given Template. These are replicas in the sense that they are instantiations of the same Template, but individual replicas also have a consistent identity. If unspecified, defaults to 1.
revision_history_limit: Option<i32>
revisionHistoryLimit is the maximum number of revisions that will be maintained in the StatefulSet’s revision history. The revision history consists of all revisions not represented by a currently applied StatefulSetSpec version. The default value is 10.
selector: LabelSelector
selector is a label query over pods that should match the replica count. It must match the pod template’s labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
service_name: String
serviceName is the name of the service that governs this StatefulSet. This service must exist before the StatefulSet, and is responsible for the network identity of the set. Pods get DNS/hostnames that follow the pattern: pod-specific-string.serviceName.default.svc.cluster.local where “pod-specific-string” is managed by the StatefulSet controller.
template: PodTemplateSpec
template is the object that describes the pod that will be created if insufficient replicas are detected. Each pod stamped out by the StatefulSet will fulfill this Template, but have a unique identity from the rest of the StatefulSet.
update_strategy: Option<StatefulSetUpdateStrategy>
updateStrategy indicates the StatefulSetUpdateStrategy that will be employed to update Pods in the StatefulSet when a revision is made to Template.
volume_claim_templates: Option<Vec<PersistentVolumeClaim>>
volumeClaimTemplates is a list of claims that pods are allowed to reference. The StatefulSet controller is responsible for mapping network identities to claims in a way that maintains the identity of a pod. Every claim in this list must have at least one matching (by name) volumeMount in one container in the template. A claim in this list takes precedence over any volumes in the template, with the same name.
Trait Implementations
impl Clone for StatefulSetSpec
[src]
impl Clone for StatefulSetSpec
[src]fn clone(&self) -> StatefulSetSpec
[src]
fn clone(&self) -> StatefulSetSpec
[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]Performs copy-assignment from source
. Read more
impl Debug for StatefulSetSpec
[src]
impl Debug for StatefulSetSpec
[src]impl Default for StatefulSetSpec
[src]
impl Default for StatefulSetSpec
[src]fn default() -> StatefulSetSpec
[src]
fn default() -> StatefulSetSpec
[src]Returns the “default value” for a type. Read more
impl<'de> Deserialize<'de> for StatefulSetSpec
[src]
impl<'de> Deserialize<'de> for StatefulSetSpec
[src]fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
[src]
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
[src]Deserialize this value from the given Serde deserializer. Read more
impl PartialEq<StatefulSetSpec> for StatefulSetSpec
[src]
impl PartialEq<StatefulSetSpec> for StatefulSetSpec
[src]fn eq(&self, other: &StatefulSetSpec) -> bool
[src]
fn eq(&self, other: &StatefulSetSpec) -> bool
[src]This method tests for self
and other
values to be equal, and is used
by ==
. Read more
fn ne(&self, other: &StatefulSetSpec) -> bool
[src]
fn ne(&self, other: &StatefulSetSpec) -> bool
[src]This method tests for !=
.
impl Serialize for StatefulSetSpec
[src]
impl Serialize for StatefulSetSpec
[src]impl StructuralPartialEq for StatefulSetSpec
[src]
Auto Trait Implementations
impl RefUnwindSafe for StatefulSetSpec
impl Send for StatefulSetSpec
impl Sync for StatefulSetSpec
impl Unpin for StatefulSetSpec
impl UnwindSafe for StatefulSetSpec
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn to_owned(&self) -> T
[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
[src]
pub fn clone_into(&self, target: &mut T)
[src]🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,