mirror of
https://github.com/rancher/rke.git
synced 2025-09-15 22:49:13 +00:00
Updated api bool fields with default=true to *bool. Go files
This commit is contained in:
@@ -317,7 +317,8 @@ func clusterUpLocal(ctx *cli.Context) error {
|
||||
rkeConfig.Nodes = []v3.RKEConfigNode{*cluster.GetLocalRKENodeConfig()}
|
||||
}
|
||||
|
||||
rkeConfig.IgnoreDockerVersion = ctx.Bool("ignore-docker-version")
|
||||
ignoreDockerVersion := ctx.Bool("ignore-docker-version")
|
||||
rkeConfig.IgnoreDockerVersion = &ignoreDockerVersion
|
||||
|
||||
// setting up the dialers
|
||||
dialers := hosts.GetDialerOptions(nil, hosts.LocalHealthcheckFactory, nil)
|
||||
|
Reference in New Issue
Block a user