Show / Hide Table of Contents

Class StatefulSetSpec

A StatefulSetSpec is the specification of a StatefulSet.

Inheritance
System.Object
StatefulSetSpec
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Kubernetes.Types.Outputs.Apps.V1Beta1
Assembly: Pulumi.Kubernetes.dll
Syntax
public sealed class StatefulSetSpec

Fields

View Source

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.

Declaration
public readonly string PodManagementPolicy
Field Value
Type Description
System.String
View Source

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.

Declaration
public readonly int Replicas
Field Value
Type Description
System.Int32
View Source

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.

Declaration
public readonly int RevisionHistoryLimit
Field Value
Type Description
System.Int32
View Source

Selector

selector is a label query over pods that should match the replica count. If empty, defaulted to labels on the pod template. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors

Declaration
public readonly LabelSelector Selector
Field Value
Type Description
LabelSelector
View Source

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.

Declaration
public readonly string ServiceName
Field Value
Type Description
System.String
View Source

Template

template is the object that describes the pod that will be created if insufficient replicas are detected. Each pod stamped out by the StatefulSet will fulfill this Template, but have a unique identity from the rest of the StatefulSet.

Declaration
public readonly PodTemplateSpec Template
Field Value
Type Description
PodTemplateSpec
View Source

UpdateStrategy

updateStrategy indicates the StatefulSetUpdateStrategy that will be employed to update Pods in the StatefulSet when a revision is made to Template.

Declaration
public readonly StatefulSetUpdateStrategy UpdateStrategy
Field Value
Type Description
StatefulSetUpdateStrategy
View Source

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.

Declaration
public readonly ImmutableArray<PersistentVolumeClaim> VolumeClaimTemplates
Field Value
Type Description
System.Collections.Immutable.ImmutableArray<PersistentVolumeClaim>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.