Class StatefulSet
- java.lang.Object
-
- com.marcnuri.yakc.model.io.k8s.api.apps.v1.StatefulSet
-
- All Implemented Interfaces:
com.marcnuri.yakc.model.Model
public class StatefulSet extends java.lang.Object implements com.marcnuri.yakc.model.Model
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.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
StatefulSet.StatefulSetBuilder
-
Constructor Summary
Constructors Constructor Description StatefulSet()
StatefulSet(java.lang.String apiVersion, java.lang.String kind, ObjectMeta metadata, StatefulSetSpec spec, StatefulSetStatus status)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static StatefulSet.StatefulSetBuilder
builder()
protected boolean
canEqual(java.lang.Object other)
boolean
equals(java.lang.Object o)
java.lang.String
getApiVersion()
APIVersion defines the versioned schema of this representation of an object.java.lang.String
getKind()
Kind is a string value representing the REST resource this object represents.ObjectMeta
getMetadata()
StatefulSetSpec
getSpec()
StatefulSetStatus
getStatus()
int
hashCode()
void
setApiVersion(java.lang.String apiVersion)
APIVersion defines the versioned schema of this representation of an object.void
setKind(java.lang.String kind)
Kind is a string value representing the REST resource this object represents.void
setMetadata(ObjectMeta metadata)
void
setSpec(StatefulSetSpec spec)
void
setStatus(StatefulSetStatus status)
StatefulSet.StatefulSetBuilder
toBuilder()
java.lang.String
toString()
-
-
-
Constructor Detail
-
StatefulSet
public StatefulSet(java.lang.String apiVersion, java.lang.String kind, ObjectMeta metadata, StatefulSetSpec spec, StatefulSetStatus status)
-
StatefulSet
public StatefulSet()
-
-
Method Detail
-
builder
public static StatefulSet.StatefulSetBuilder builder()
-
toBuilder
public StatefulSet.StatefulSetBuilder toBuilder()
-
getApiVersion
public java.lang.String getApiVersion()
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
-
getKind
public java.lang.String getKind()
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
-
getMetadata
public ObjectMeta getMetadata()
-
getSpec
public StatefulSetSpec getSpec()
-
getStatus
public StatefulSetStatus getStatus()
-
setApiVersion
public void setApiVersion(java.lang.String apiVersion)
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
-
setKind
public void setKind(java.lang.String kind)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
-
setMetadata
public void setMetadata(ObjectMeta metadata)
-
setSpec
public void setSpec(StatefulSetSpec spec)
-
setStatus
public void setStatus(StatefulSetStatus status)
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
canEqual
protected boolean canEqual(java.lang.Object other)
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-