1
0
mirror of https://github.com/rancher/cli.git synced 2026-02-05 09:48:36 +01:00

Updated rkeConfig.IgnoreDockerVersion field to *bool

This commit is contained in:
rawmind0
2020-06-02 10:30:15 +02:00
parent 40aedc95a3
commit 5bae73a67b

View File

@@ -774,7 +774,8 @@ func getRKEConfig(ctx *cli.Context) (*managementClient.RancherKubernetesEngineCo
}
}
rkeConfig.IgnoreDockerVersion = ctx.BoolT("disable-docker-version")
ignoreDockerVersion := ctx.BoolT("disable-docker-version")
rkeConfig.IgnoreDockerVersion = &ignoreDockerVersion
if ctx.String("k8s-version") != "" {
rkeConfig.Version = ctx.String("k8s-version")