Fix field name

This commit is contained in:
John Gardiner Myers 2020-07-01 14:25:49 -07:00
parent cc2b647d06
commit 16daa3ecac
4 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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

View File

@ -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%).

View File

@ -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%).