7
7
"os"
8
8
9
9
"k8s.io/client-go/tools/clientcmd"
10
+ kclientcmd "k8s.io/client-go/tools/clientcmd"
10
11
clientcmdapi "k8s.io/client-go/tools/clientcmd/api"
11
12
12
- "github.com/openshift/origin/pkg/client/config"
13
13
"github.com/openshift/origin/pkg/oc/admin/diagnostics/diagnostics/util"
14
14
)
15
15
@@ -32,12 +32,12 @@ func (o DiagnosticsOptions) detectClientConfig() (expected bool, detected bool)
32
32
return false , false
33
33
}
34
34
o .Logger ().Notice ("CED2011" , "Determining if client configuration exists for client/cluster diagnostics" )
35
- confFlagName := config . OpenShiftConfigFlagName
35
+ confFlagName := kclientcmd . OpenShiftKubeConfigFlagName
36
36
confFlagValue := o .ClientFlags .Lookup (confFlagName ).Value .String ()
37
37
successfulLoad := false
38
38
39
39
var foundPath string
40
- rules := config . NewOpenShiftClientConfigLoadingRules ()
40
+ rules := kclientcmd . NewDefaultClientConfigLoadingRules ()
41
41
paths := append ([]string {confFlagValue }, rules .Precedence ... )
42
42
for index , path := range paths {
43
43
errmsg := ""
@@ -47,8 +47,8 @@ func (o DiagnosticsOptions) detectClientConfig() (expected bool, detected bool)
47
47
case len (paths ) - 1 : // config in ~/.kube
48
48
// no error message indicated if it is not there... user didn't say it would be
49
49
default : // can be multiple paths from the env var in theory; all cases should go here
50
- if len (os .Getenv (config . OpenShiftConfigPathEnvVar )) != 0 {
51
- errmsg = fmt .Sprintf ("Env var %s specified that client config could be at %s\n " , config . OpenShiftConfigPathEnvVar , path )
50
+ if len (os .Getenv (kclientcmd . RecommendedConfigPathEnvVar )) != 0 {
51
+ errmsg = fmt .Sprintf ("Env var %s specified that client config could be at %s\n " , kclientcmd . RecommendedConfigPathEnvVar , path )
52
52
}
53
53
}
54
54
@@ -88,7 +88,7 @@ location for use by the client and diagnostics.
88
88
for _ , path := range util .AdminKubeConfigPaths {
89
89
msg := fmt .Sprintf ("Looking for a possible client config at %s\n " , path )
90
90
if o .canOpenConfigFile (path , msg ) {
91
- o .Logger ().Warn ("DCli1003" , fmt .Sprintf (adminWarningF , config . OpenShiftConfigPathEnvVar , path , config .RecommendedHomeFile ))
91
+ o .Logger ().Warn ("DCli1003" , fmt .Sprintf (adminWarningF , kclientcmd . RecommendedConfigPathEnvVar , path , kclientcmd .RecommendedHomeFile ))
92
92
break
93
93
}
94
94
}
0 commit comments