struct

Kubernetes::StatefulSetUpdateStrategy

Inherits YAML::Serializable < JSON::Serializable < Kubernetes::Serializable < Struct < Value < Object

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.

Constructors

new(pull : ::JSON::PullParser)
new(*, __pull_for_json_serializable pull : ::JSON::PullParser)
new(*, __context_for_yaml_serializable ctx : YAML::ParseContext, __node_for_yaml_serializable node : YAML::Nodes::Node)

Instance methods

rolling_update

RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType.

Source
rolling_update=(rolling_update : RollingUpdateStatefulSetStrategy | Nil)

RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType.

Source
type

Type indicates the type of the StatefulSetUpdateStrategy. Default is RollingUpdate.

Source
type=(type : String | Nil)

Type indicates the type of the StatefulSetUpdateStrategy. Default is RollingUpdate.

Source

Macros

field(name, type = nil, **options, &block)

Helper macro for defining fields with automatic camelCase conversion

Source