final case class StatefulSetSpec(minReadySeconds: Option[Int] = None, serviceName: String, replicas: Option[Int] = None, revisionHistoryLimit: Option[Int] = None, podManagementPolicy: Option[String] = None, volumeClaimTemplates: Option[Seq[PersistentVolumeClaim]] = None, persistentVolumeClaimRetentionPolicy: Option[StatefulSetPersistentVolumeClaimRetentionPolicy] = None, template: PodTemplateSpec, selector: LabelSelector, updateStrategy: Option[StatefulSetUpdateStrategy] = None) extends Product with Serializable
A StatefulSetSpec is the specification of a StatefulSet.
- Source
- StatefulSetSpec.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- StatefulSetSpec
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
- new StatefulSetSpec(minReadySeconds: Option[Int] = None, serviceName: String, replicas: Option[Int] = None, revisionHistoryLimit: Option[Int] = None, podManagementPolicy: Option[String] = None, volumeClaimTemplates: Option[Seq[PersistentVolumeClaim]] = None, persistentVolumeClaimRetentionPolicy: Option[StatefulSetPersistentVolumeClaimRetentionPolicy] = None, template: PodTemplateSpec, selector: LabelSelector, updateStrategy: Option[StatefulSetUpdateStrategy] = None)
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def addVolumeClaimTemplates(newValues: PersistentVolumeClaim*): StatefulSetSpec
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val minReadySeconds: Option[Int]
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- val persistentVolumeClaimRetentionPolicy: Option[StatefulSetPersistentVolumeClaimRetentionPolicy]
- val podManagementPolicy: Option[String]
- val replicas: Option[Int]
- val revisionHistoryLimit: Option[Int]
- val selector: LabelSelector
- val serviceName: String
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
- val template: PodTemplateSpec
- val updateStrategy: Option[StatefulSetUpdateStrategy]
- val volumeClaimTemplates: Option[Seq[PersistentVolumeClaim]]
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
- def withMinReadySeconds(value: Int): StatefulSetSpec
- def withPersistentVolumeClaimRetentionPolicy(value: StatefulSetPersistentVolumeClaimRetentionPolicy): StatefulSetSpec
- def withPodManagementPolicy(value: String): StatefulSetSpec
- def withReplicas(value: Int): StatefulSetSpec
- def withRevisionHistoryLimit(value: Int): StatefulSetSpec
- def withSelector(value: LabelSelector): StatefulSetSpec
- def withServiceName(value: String): StatefulSetSpec
- def withTemplate(value: PodTemplateSpec): StatefulSetSpec
- def withUpdateStrategy(value: StatefulSetUpdateStrategy): StatefulSetSpec
- def withVolumeClaimTemplates(value: Seq[PersistentVolumeClaim]): StatefulSetSpec