diff --git a/apis/management.cattle.io/v3/rke_types.go b/apis/management.cattle.io/v3/rke_types.go index 5f61d300..e6239156 100644 --- a/apis/management.cattle.io/v3/rke_types.go +++ b/apis/management.cattle.io/v3/rke_types.go @@ -18,7 +18,7 @@ type RancherKubernetesEngineConfig struct { // Authorization mode configuration used in the cluster Authorization AuthzConfig `yaml:"authorization" json:"authorization,omitempty"` // Enable/disable strict docker version checking - StrictDockerVersion bool `yaml:"strict_docker_version" json:"strictDockerVersion"` + IgnoreDockerVersion bool `yaml:"ignore_docker_version" json:"ignoreDockerVersion"` } type RKEConfigNode struct { diff --git a/client/management/v3/zz_generated_rancher_kubernetes_engine_config.go b/client/management/v3/zz_generated_rancher_kubernetes_engine_config.go index 34182ea5..376928bb 100644 --- a/client/management/v3/zz_generated_rancher_kubernetes_engine_config.go +++ b/client/management/v3/zz_generated_rancher_kubernetes_engine_config.go @@ -5,11 +5,11 @@ const ( RancherKubernetesEngineConfigFieldAddons = "addons" RancherKubernetesEngineConfigFieldAuthentication = "authentication" RancherKubernetesEngineConfigFieldAuthorization = "authorization" + RancherKubernetesEngineConfigFieldIgnoreDockerVersion = "ignoreDockerVersion" RancherKubernetesEngineConfigFieldNetwork = "network" RancherKubernetesEngineConfigFieldNodes = "nodes" RancherKubernetesEngineConfigFieldSSHKeyPath = "sshKeyPath" RancherKubernetesEngineConfigFieldServices = "services" - RancherKubernetesEngineConfigFieldStrictDockerVersion = "strictDockerVersion" RancherKubernetesEngineConfigFieldSystemImages = "systemImages" ) @@ -17,10 +17,10 @@ type RancherKubernetesEngineConfig struct { Addons string `json:"addons,omitempty"` Authentication *AuthnConfig `json:"authentication,omitempty"` Authorization *AuthzConfig `json:"authorization,omitempty"` + IgnoreDockerVersion *bool `json:"ignoreDockerVersion,omitempty"` Network *NetworkConfig `json:"network,omitempty"` Nodes []RKEConfigNode `json:"nodes,omitempty"` SSHKeyPath string `json:"sshKeyPath,omitempty"` Services *RKEConfigServices `json:"services,omitempty"` - StrictDockerVersion *bool `json:"strictDockerVersion,omitempty"` SystemImages map[string]string `json:"systemImages,omitempty"` }