Merge pull request #160 from runseb/patch-4

Logic for the token is wrong
pull/128/merge
Jack Greenfield 9 years ago
commit 5ca2eb002e

@ -204,7 +204,7 @@ func getConfigurator() *configurator.Configurator {
} }
if *kubeInsecure { if *kubeInsecure {
args = append(args, "--insecure-skip-tls-verify") args = append(args, fmt.Sprintf("--insecure-skip-tls-verify=%s", *kubeInsecure))
} else { } else {
if *kubeCertAuth != "" { if *kubeCertAuth != "" {
args = append(args, fmt.Sprintf("--certificate-authority=%s", *kubeCertAuth)) args = append(args, fmt.Sprintf("--certificate-authority=%s", *kubeCertAuth))
@ -216,7 +216,7 @@ func getConfigurator() *configurator.Configurator {
args = append(args, fmt.Sprintf("--client-key=%s", *kubeClientKey)) args = append(args, fmt.Sprintf("--client-key=%s", *kubeClientKey))
} }
} }
}
if *kubeToken != "" { if *kubeToken != "" {
args = append(args, fmt.Sprintf("--token=%s", *kubeToken)) args = append(args, fmt.Sprintf("--token=%s", *kubeToken))
} else { } else {
@ -229,7 +229,6 @@ func getConfigurator() *configurator.Configurator {
} }
} }
} }
}
return configurator.NewConfigurator(*kubePath, args) return configurator.NewConfigurator(*kubePath, args)
} }

Loading…
Cancel
Save