mirror of https://github.com/kubernetes/kops.git
Fix field name
This commit is contained in:
parent
cc2b647d06
commit
16daa3ecac
|
|
@ -3363,7 +3363,7 @@ spec:
|
|||
description: RollingUpdate defines the default rolling-update settings
|
||||
for instance groups
|
||||
properties:
|
||||
enabled:
|
||||
drainAndTerminate:
|
||||
description: DrainAndTerminate enables draining and terminating
|
||||
nodes during rolling updates. Defaults to true.
|
||||
type: boolean
|
||||
|
|
|
|||
|
|
@ -653,7 +653,7 @@ spec:
|
|||
rollingUpdate:
|
||||
description: RollingUpdate defines the rolling-update behavior
|
||||
properties:
|
||||
enabled:
|
||||
drainAndTerminate:
|
||||
description: DrainAndTerminate enables draining and terminating
|
||||
nodes during rolling updates. Defaults to true.
|
||||
type: boolean
|
||||
|
|
|
|||
|
|
@ -697,7 +697,7 @@ type DNSControllerGossipConfig struct {
|
|||
type RollingUpdate struct {
|
||||
// DrainAndTerminate enables draining and terminating nodes during rolling updates.
|
||||
// Defaults to true.
|
||||
DrainAndTerminate *bool `json:"enabled,omitempty"`
|
||||
DrainAndTerminate *bool `json:"drainAndTerminate,omitempty"`
|
||||
// MaxUnavailable is the maximum number of nodes that can be unavailable during the update.
|
||||
// The value can be an absolute number (for example 5) or a percentage of desired
|
||||
// nodes (for example 10%).
|
||||
|
|
|
|||
|
|
@ -592,7 +592,7 @@ type DNSControllerGossipConfig struct {
|
|||
type RollingUpdate struct {
|
||||
// DrainAndTerminate enables draining and terminating nodes during rolling updates.
|
||||
// Defaults to true.
|
||||
DrainAndTerminate *bool `json:"enabled,omitempty"`
|
||||
DrainAndTerminate *bool `json:"drainAndTerminate,omitempty"`
|
||||
// MaxUnavailable is the maximum number of nodes that can be unavailable during the update.
|
||||
// The value can be an absolute number (for example 5) or a percentage of desired
|
||||
// nodes (for example 10%).
|
||||
|
|
|
|||
Loading…
Reference in New Issue