Struct k8s_openapi::api::apps::v1::StatefulSet
source · pub struct StatefulSet {
pub metadata: ObjectMeta,
pub spec: Option<StatefulSetSpec>,
pub status: Option<StatefulSetStatus>,
}
Expand description
StatefulSet represents a set of pods with consistent identities. Identities are defined as:
- Network: A single stable DNS and hostname.
- Storage: As many VolumeClaims as requested.
The StatefulSet guarantees that a given network identity will always map to the same storage identity.
Fields§
§metadata: ObjectMeta
Standard object’s metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
spec: Option<StatefulSetSpec>
Spec defines the desired identities of pods in this set.
status: Option<StatefulSetStatus>
Status is the current status of Pods in this StatefulSet. This data may be out of date by some window of time.
Trait Implementations§
source§impl Clone for StatefulSet
impl Clone for StatefulSet
source§fn clone(&self) -> StatefulSet
fn clone(&self) -> StatefulSet
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 StatefulSet
impl Debug for StatefulSet
source§impl DeepMerge for StatefulSet
impl DeepMerge for StatefulSet
source§fn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
Merge
other
into self
.source§impl Default for StatefulSet
impl Default for StatefulSet
source§fn default() -> StatefulSet
fn default() -> StatefulSet
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for StatefulSet
impl<'de> Deserialize<'de> for StatefulSet
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 ListableResource for StatefulSet
impl ListableResource for StatefulSet
source§impl Metadata for StatefulSet
impl Metadata for StatefulSet
source§impl PartialEq for StatefulSet
impl PartialEq for StatefulSet
source§impl Resource for StatefulSet
impl Resource for StatefulSet
source§const API_VERSION: &'static str = "apps/v1"
const API_VERSION: &'static str = "apps/v1"
The API version of the resource. This is a composite of
Resource::GROUP
and Resource::VERSION
(eg "apiextensions.k8s.io/v1beta1"
)
or just the version for resources without a group (eg "v1"
). Read moresource§const GROUP: &'static str = "apps"
const GROUP: &'static str = "apps"
The group of the resource, or the empty string if the resource doesn’t have a group.
source§const URL_PATH_SEGMENT: &'static str = "statefulsets"
const URL_PATH_SEGMENT: &'static str = "statefulsets"
The URL path segment used to construct URLs related to this resource. Read more
source§type Scope = NamespaceResourceScope
type Scope = NamespaceResourceScope
Indicates whether the resource is namespace-scoped or cluster-scoped or a subresource. Read more
source§impl Serialize for StatefulSet
impl Serialize for StatefulSet
impl StructuralPartialEq for StatefulSet
Auto Trait Implementations§
impl Freeze for StatefulSet
impl RefUnwindSafe for StatefulSet
impl Send for StatefulSet
impl Sync for StatefulSet
impl Unpin for StatefulSet
impl UnwindSafe for StatefulSet
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
)