mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-23 11:50:44 +00:00
Merge pull request #7108 from jayunit100/kubectl-1
Use --host option even if kubecontext is not provided.
This commit is contained in:
commit
2a3e0796f8
@ -284,6 +284,11 @@ func validateController(c *client.Client, containerImage string, replicas int, c
|
||||
// kubectlCmd runs the kubectl executable.
|
||||
func kubectlCmd(args ...string) *exec.Cmd {
|
||||
defaultArgs := []string{}
|
||||
|
||||
// Reference a --server option so tests can run anywhere.
|
||||
if testContext.Host != "" {
|
||||
defaultArgs = append(defaultArgs, "--"+clientcmd.FlagAPIServer+"="+testContext.Host)
|
||||
}
|
||||
if testContext.KubeConfig != "" {
|
||||
defaultArgs = append(defaultArgs, "--"+clientcmd.RecommendedConfigPathFlag+"="+testContext.KubeConfig)
|
||||
|
||||
@ -292,10 +297,6 @@ func kubectlCmd(args ...string) *exec.Cmd {
|
||||
defaultArgs = append(defaultArgs, "--"+clientcmd.FlagContext+"="+testContext.KubeContext)
|
||||
}
|
||||
|
||||
// Reference a --server option so tests can run anywhere.
|
||||
if testContext.Host != "" {
|
||||
defaultArgs = append(defaultArgs, "--"+clientcmd.FlagAPIServer+"="+testContext.Host)
|
||||
}
|
||||
} else {
|
||||
defaultArgs = append(defaultArgs, "--"+clientcmd.FlagAuthPath+"="+testContext.AuthConfig)
|
||||
if testContext.CertDir != "" {
|
||||
|
Loading…
Reference in New Issue
Block a user