Class StatefulSetSpec

  • All Implemented Interfaces:
    com.marcnuri.yakc.model.Model

    public class StatefulSetSpec
    extends java.lang.Object
    implements com.marcnuri.yakc.model.Model
    A StatefulSetSpec is the specification of a StatefulSet.
    • Constructor Detail

      • StatefulSetSpec

        public StatefulSetSpec​(java.lang.String podManagementPolicy,
                               java.lang.Number replicas,
                               java.lang.Number revisionHistoryLimit,
                               @NonNull
                               @NonNull LabelSelector selector,
                               @NonNull
                               @NonNull java.lang.String serviceName,
                               @NonNull
                               @NonNull PodTemplateSpec template,
                               StatefulSetUpdateStrategy updateStrategy,
                               java.util.List<PersistentVolumeClaim> volumeClaimTemplates)
      • StatefulSetSpec

        public StatefulSetSpec()
    • Method Detail

      • getPodManagementPolicy

        public java.lang.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.
      • getReplicas

        public java.lang.Number 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.
      • getRevisionHistoryLimit

        public java.lang.Number 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.
      • getSelector

        @NonNull
        public @NonNull LabelSelector getSelector()
      • getServiceName

        @NonNull
        public @NonNull java.lang.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.
      • getVolumeClaimTemplates

        public java.util.List<PersistentVolumeClaim> 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.
      • setPodManagementPolicy

        public void setPodManagementPolicy​(java.lang.String podManagementPolicy)
        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.
      • setReplicas

        public void setReplicas​(java.lang.Number replicas)
        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.
      • setRevisionHistoryLimit

        public void setRevisionHistoryLimit​(java.lang.Number revisionHistoryLimit)
        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.
      • setSelector

        public void setSelector​(@NonNull
                                @NonNull LabelSelector selector)
      • setServiceName

        public void setServiceName​(@NonNull
                                   @NonNull java.lang.String serviceName)
        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.
      • setTemplate

        public void setTemplate​(@NonNull
                                @NonNull PodTemplateSpec template)
      • setVolumeClaimTemplates

        public void setVolumeClaimTemplates​(java.util.List<PersistentVolumeClaim> volumeClaimTemplates)
        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.
      • equals

        public boolean equals​(java.lang.Object o)
        Overrides:
        equals in class java.lang.Object
      • canEqual

        protected boolean canEqual​(java.lang.Object other)
      • hashCode

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

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object