Class V1StatefulSetSpec

java.lang.Object
io.kubernetes.client.openapi.models.V1StatefulSetSpec

@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen", date="2024-02-02T17:56:12.287571Z[Etc/UTC]") public class V1StatefulSetSpec extends Object
A StatefulSetSpec is the specification of a StatefulSet.
  • Field Details

  • Constructor Details

    • V1StatefulSetSpec

      public V1StatefulSetSpec()
  • Method Details

    • minReadySeconds

      public V1StatefulSetSpec minReadySeconds(Integer minReadySeconds)
    • getMinReadySeconds

      @Nullable public Integer getMinReadySeconds()
      Minimum number of seconds for which a newly created 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)
      Returns:
      minReadySeconds
    • setMinReadySeconds

      public void setMinReadySeconds(Integer minReadySeconds)
    • ordinals

      public V1StatefulSetSpec ordinals(V1StatefulSetOrdinals ordinals)
    • getOrdinals

      @Nullable public V1StatefulSetOrdinals getOrdinals()
      Get ordinals
      Returns:
      ordinals
    • setOrdinals

      public void setOrdinals(V1StatefulSetOrdinals ordinals)
    • persistentVolumeClaimRetentionPolicy

      public V1StatefulSetSpec persistentVolumeClaimRetentionPolicy(V1StatefulSetPersistentVolumeClaimRetentionPolicy persistentVolumeClaimRetentionPolicy)
    • getPersistentVolumeClaimRetentionPolicy

      @Nullable public V1StatefulSetPersistentVolumeClaimRetentionPolicy getPersistentVolumeClaimRetentionPolicy()
      Get persistentVolumeClaimRetentionPolicy
      Returns:
      persistentVolumeClaimRetentionPolicy
    • setPersistentVolumeClaimRetentionPolicy

      public void setPersistentVolumeClaimRetentionPolicy(V1StatefulSetPersistentVolumeClaimRetentionPolicy persistentVolumeClaimRetentionPolicy)
    • podManagementPolicy

      public V1StatefulSetSpec podManagementPolicy(String podManagementPolicy)
    • getPodManagementPolicy

      @Nullable public String getPodManagementPolicy()
      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.
      Returns:
      podManagementPolicy
    • setPodManagementPolicy

      public void setPodManagementPolicy(String podManagementPolicy)
    • replicas

      public V1StatefulSetSpec replicas(Integer replicas)
    • getReplicas

      @Nullable public Integer getReplicas()
      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.
      Returns:
      replicas
    • setReplicas

      public void setReplicas(Integer replicas)
    • revisionHistoryLimit

      public V1StatefulSetSpec revisionHistoryLimit(Integer revisionHistoryLimit)
    • getRevisionHistoryLimit

      @Nullable public Integer getRevisionHistoryLimit()
      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.
      Returns:
      revisionHistoryLimit
    • setRevisionHistoryLimit

      public void setRevisionHistoryLimit(Integer revisionHistoryLimit)
    • selector

      public V1StatefulSetSpec selector(V1LabelSelector selector)
    • getSelector

      @Nonnull public V1LabelSelector getSelector()
      Get selector
      Returns:
      selector
    • setSelector

      public void setSelector(V1LabelSelector selector)
    • serviceName

      public V1StatefulSetSpec serviceName(String serviceName)
    • getServiceName

      @Nonnull public String getServiceName()
      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.
      Returns:
      serviceName
    • setServiceName

      public void setServiceName(String serviceName)
    • template

      public V1StatefulSetSpec template(V1PodTemplateSpec template)
    • getTemplate

      @Nonnull public V1PodTemplateSpec getTemplate()
      Get template
      Returns:
      template
    • setTemplate

      public void setTemplate(V1PodTemplateSpec template)
    • updateStrategy

      public V1StatefulSetSpec updateStrategy(V1StatefulSetUpdateStrategy updateStrategy)
    • getUpdateStrategy

      @Nullable public V1StatefulSetUpdateStrategy getUpdateStrategy()
      Get updateStrategy
      Returns:
      updateStrategy
    • setUpdateStrategy

      public void setUpdateStrategy(V1StatefulSetUpdateStrategy updateStrategy)
    • volumeClaimTemplates

      public V1StatefulSetSpec volumeClaimTemplates(List<V1PersistentVolumeClaim> volumeClaimTemplates)
    • addVolumeClaimTemplatesItem

      public V1StatefulSetSpec addVolumeClaimTemplatesItem(V1PersistentVolumeClaim volumeClaimTemplatesItem)
    • getVolumeClaimTemplates

      @Nullable public List<V1PersistentVolumeClaim> getVolumeClaimTemplates()
      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.
      Returns:
      volumeClaimTemplates
    • setVolumeClaimTemplates

      public void setVolumeClaimTemplates(List<V1PersistentVolumeClaim> volumeClaimTemplates)
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • validateJsonObject

      public static void validateJsonObject(com.google.gson.JsonObject jsonObj) throws IOException
      Validates the JSON Object and throws an exception if issues found
      Parameters:
      jsonObj - JSON Object
      Throws:
      IOException - if the JSON Object is invalid with respect to V1StatefulSetSpec
    • fromJson

      public static V1StatefulSetSpec fromJson(String jsonString) throws IOException
      Create an instance of V1StatefulSetSpec given an JSON string
      Parameters:
      jsonString - JSON string
      Returns:
      An instance of V1StatefulSetSpec
      Throws:
      IOException - if the JSON string is invalid with respect to V1StatefulSetSpec
    • toJson

      public String toJson()
      Convert an instance of V1StatefulSetSpec to an JSON string
      Returns:
      JSON string