@@ -12,6 +12,7 @@ import (
12
12
13
13
"github.com/openshift/origin/pkg/oc/admin/diagnostics/diagnostics/types"
14
14
osclientcmd "github.com/openshift/origin/pkg/oc/cli/util/clientcmd"
15
+ projectclientinternal "github.com/openshift/origin/pkg/project/generated/internalclientset"
15
16
)
16
17
17
18
// ConfigContext diagnostics (one per context) validate that the client config context is complete and has connectivity to the master.
@@ -235,26 +236,30 @@ func (d ConfigContext) Check() types.DiagnosticResult {
235
236
236
237
// Actually send a request to see if context has connectivity.
237
238
// Note: we cannot reuse factories as they cache the clients, so build new factory for each context.
238
- projectClient , err := osclientcmd .NewFactory (kclientcmd .NewDefaultClientConfig (* d .RawConfig , & kclientcmd.ConfigOverrides {Context : * context })). OpenshiftInternalProjectClient ( )
239
- // client create now *fails* if cannot connect to server; so, address connectivity errors below
239
+ temporaryFactory := osclientcmd .NewFactory (kclientcmd .NewDefaultClientConfig (* d .RawConfig , & kclientcmd.ConfigOverrides {Context : * context }))
240
+ clientConfig , err := temporaryFactory . ClientConfig ()
240
241
if err == nil {
241
- if projects , projerr := projectClient .Project ().Projects ().List (metav1.ListOptions {}); projerr != nil {
242
- err = projerr
243
- } else { // success!
244
- list := []string {}
245
- for i , project := range projects .Items {
246
- if i > 9 {
247
- list = append (list , "..." )
248
- break
242
+ projectClient , err := projectclientinternal .NewForConfig (clientConfig )
243
+ // client create now *fails* if cannot connect to server; so, address connectivity errors below
244
+ if err == nil {
245
+ if projects , projerr := projectClient .Project ().Projects ().List (metav1.ListOptions {}); projerr != nil {
246
+ err = projerr
247
+ } else { // success!
248
+ list := []string {}
249
+ for i , project := range projects .Items {
250
+ if i > 9 {
251
+ list = append (list , "..." )
252
+ break
253
+ }
254
+ list = append (list , project .Name )
249
255
}
250
- list = append ( list , project . Name )
251
- }
252
- if len ( list ) == 0 {
253
- r .Info ("DCli0003 " , msgText + "Successfully requested project list, but it is empty, so user has no access to anything." )
254
- } else {
255
- r . Info ( "DCli0004" , msgText + fmt . Sprintf ( "Successfully requested project list; has access to project(s): \n %v" , list ))
256
+ if len ( list ) == 0 {
257
+ r . Info ( "DCli0003" , msgText + "Successfully requested project list, but it is empty, so user has no access to anything." )
258
+ } else {
259
+ r .Info ("DCli0004 " , msgText + fmt . Sprintf ( "Successfully requested project list; has access to project(s): \n %v" , list ) )
260
+ }
261
+ return r
256
262
}
257
- return r
258
263
}
259
264
}
260
265
0 commit comments