1
0
mirror of https://github.com/rancher/rke.git synced 2025-09-01 06:56:29 +00:00

linting fixes

This commit is contained in:
moelsayed
2017-11-08 02:32:55 +02:00
parent eed7152d1a
commit bfae4c15d4
5 changed files with 10 additions and 12 deletions

View File

@@ -79,12 +79,12 @@ func ClusterUp(clusterFile, authType string) (string, string, string, string, er
err = kubeCluster.DeployNetworkPlugin()
if err != nil {
return ApiURL, caCrt, clientCert, clientKey, err
return APIURL, caCrt, clientCert, clientKey, err
}
err = kubeCluster.DeployK8sAddOns()
if err != nil {
return ApiURL, caCrt, clientCert, clientKey, err
return APIURL, caCrt, clientCert, clientKey, err
}
err = kubeCluster.SaveClusterState(clusterFile)