mirror of https://github.com/knative/pkg.git
removing default for KUBECONFIG to enable in cluster tests (#2191)
This commit is contained in:
parent
7764284cfa
commit
dbcf4cf637
|
|
@ -24,7 +24,6 @@ import (
|
||||||
"flag"
|
"flag"
|
||||||
"text/template"
|
"text/template"
|
||||||
|
|
||||||
"k8s.io/client-go/tools/clientcmd"
|
|
||||||
env "knative.dev/pkg/environment"
|
env "knative.dev/pkg/environment"
|
||||||
testenv "knative.dev/pkg/test/environment"
|
testenv "knative.dev/pkg/test/environment"
|
||||||
"knative.dev/pkg/test/logging"
|
"knative.dev/pkg/test/logging"
|
||||||
|
|
@ -50,13 +49,6 @@ func initializeFlags() *EnvironmentFlags {
|
||||||
f.ClientConfig.InitFlags(flag.CommandLine)
|
f.ClientConfig.InitFlags(flag.CommandLine)
|
||||||
f.TestClientConfig.InitFlags(flag.CommandLine)
|
f.TestClientConfig.InitFlags(flag.CommandLine)
|
||||||
|
|
||||||
// We want to do this defaulting for tests only. The flags are reused between tests
|
|
||||||
// and production code and we want to make sure that production code defaults to
|
|
||||||
// the in-cluster config correctly.
|
|
||||||
if f.Kubeconfig == "" {
|
|
||||||
f.Kubeconfig = clientcmd.RecommendedHomeFile
|
|
||||||
}
|
|
||||||
|
|
||||||
return f
|
return f
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue