Package net.stickycode.kuuty.model.v18
Class IoK8sApiAppsV1StatefulSetSpec
- java.lang.Object
-
- net.stickycode.kuuty.model.v18.IoK8sApiAppsV1StatefulSetSpec
-
@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen", date="2020-11-26T11:01:11.402583+13:00[Pacific/Auckland]") public class IoK8sApiAppsV1StatefulSetSpec extends Object
A StatefulSetSpec is the specification of a StatefulSet.
-
-
Field Summary
Fields Modifier and Type Field Description static StringJSON_PROPERTY_POD_MANAGEMENT_POLICYstatic StringJSON_PROPERTY_REPLICASstatic StringJSON_PROPERTY_REVISION_HISTORY_LIMITstatic StringJSON_PROPERTY_SELECTORstatic StringJSON_PROPERTY_SERVICE_NAMEstatic StringJSON_PROPERTY_TEMPLATEstatic StringJSON_PROPERTY_UPDATE_STRATEGYstatic StringJSON_PROPERTY_VOLUME_CLAIM_TEMPLATES
-
Constructor Summary
Constructors Constructor Description IoK8sApiAppsV1StatefulSetSpec()
-
Method Summary
-
-
-
Field Detail
-
JSON_PROPERTY_POD_MANAGEMENT_POLICY
public static final String JSON_PROPERTY_POD_MANAGEMENT_POLICY
- See Also:
- Constant Field Values
-
JSON_PROPERTY_REPLICAS
public static final String JSON_PROPERTY_REPLICAS
- See Also:
- Constant Field Values
-
JSON_PROPERTY_REVISION_HISTORY_LIMIT
public static final String JSON_PROPERTY_REVISION_HISTORY_LIMIT
- See Also:
- Constant Field Values
-
JSON_PROPERTY_SELECTOR
public static final String JSON_PROPERTY_SELECTOR
- See Also:
- Constant Field Values
-
JSON_PROPERTY_SERVICE_NAME
public static final String JSON_PROPERTY_SERVICE_NAME
- See Also:
- Constant Field Values
-
JSON_PROPERTY_TEMPLATE
public static final String JSON_PROPERTY_TEMPLATE
- See Also:
- Constant Field Values
-
JSON_PROPERTY_UPDATE_STRATEGY
public static final String JSON_PROPERTY_UPDATE_STRATEGY
- See Also:
- Constant Field Values
-
JSON_PROPERTY_VOLUME_CLAIM_TEMPLATES
public static final String JSON_PROPERTY_VOLUME_CLAIM_TEMPLATES
- See Also:
- Constant Field Values
-
-
Method Detail
-
podManagementPolicy
public IoK8sApiAppsV1StatefulSetSpec 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 IoK8sApiAppsV1StatefulSetSpec 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 IoK8sApiAppsV1StatefulSetSpec 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 IoK8sApiAppsV1StatefulSetSpec selector(IoK8sApimachineryPkgApisMetaV1LabelSelector selector)
-
getSelector
public IoK8sApimachineryPkgApisMetaV1LabelSelector getSelector()
Get selector- Returns:
- selector
-
setSelector
public void setSelector(IoK8sApimachineryPkgApisMetaV1LabelSelector selector)
-
serviceName
public IoK8sApiAppsV1StatefulSetSpec serviceName(String serviceName)
-
getServiceName
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 IoK8sApiAppsV1StatefulSetSpec template(IoK8sApiCoreV1PodTemplateSpec template)
-
getTemplate
public IoK8sApiCoreV1PodTemplateSpec getTemplate()
Get template- Returns:
- template
-
setTemplate
public void setTemplate(IoK8sApiCoreV1PodTemplateSpec template)
-
updateStrategy
public IoK8sApiAppsV1StatefulSetSpec updateStrategy(IoK8sApiAppsV1StatefulSetUpdateStrategy updateStrategy)
-
getUpdateStrategy
@Nullable public IoK8sApiAppsV1StatefulSetUpdateStrategy getUpdateStrategy()
Get updateStrategy- Returns:
- updateStrategy
-
setUpdateStrategy
public void setUpdateStrategy(IoK8sApiAppsV1StatefulSetUpdateStrategy updateStrategy)
-
volumeClaimTemplates
public IoK8sApiAppsV1StatefulSetSpec volumeClaimTemplates(List<IoK8sApiCoreV1PersistentVolumeClaim> volumeClaimTemplates)
-
addVolumeClaimTemplatesItem
public IoK8sApiAppsV1StatefulSetSpec addVolumeClaimTemplatesItem(IoK8sApiCoreV1PersistentVolumeClaim volumeClaimTemplatesItem)
-
getVolumeClaimTemplates
@Nullable public List<IoK8sApiCoreV1PersistentVolumeClaim> 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<IoK8sApiCoreV1PersistentVolumeClaim> volumeClaimTemplates)
-
-