com.coralogix.zio.k8s.model.apps.v1
StatefulSetUpdateStrategy
Companion object StatefulSetUpdateStrategy
case class StatefulSetUpdateStrategy(rollingUpdate: Optional[RollingUpdateStatefulSetStrategy] = Optional.Absent, type: Optional[String] = Optional.Absent) extends Product with Serializable
StatefulSetUpdateStrategy indicates the strategy that the StatefulSet controller will use to perform updates. It includes any additional parameters necessary to perform the update for the indicated strategy.
- type
Type indicates the type of the StatefulSetUpdateStrategy. Default is RollingUpdate.
- Alphabetic
- By Inheritance
- StatefulSetUpdateStrategy
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
-
new
StatefulSetUpdateStrategy(rollingUpdate: Optional[RollingUpdateStatefulSetStrategy] = Optional.Absent, type: Optional[String] = Optional.Absent)
- type
Type indicates the type of the StatefulSetUpdateStrategy. Default is RollingUpdate.
Value Members
-
def
getRollingUpdate: IO[K8sFailure, RollingUpdateStatefulSetStrategy]
Gets rollingUpdate.
Gets rollingUpdate.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
-
def
getType: IO[K8sFailure, String]
Type indicates the type of the StatefulSetUpdateStrategy.
Type indicates the type of the StatefulSetUpdateStrategy. Default is RollingUpdate.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
- val rollingUpdate: Optional[RollingUpdateStatefulSetStrategy]
- val type: Optional[String]