Skip to content

Commit 5d18482

Browse files
authored
fix panics (#350)
1 parent 2cc3438 commit 5d18482

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

cmd/kubectl_token.go

+3
Original file line numberDiff line numberDiff line change
@@ -280,6 +280,9 @@ func cacheCredential(ctx *cli.Context, cred *config.ExecCredential, id string) e
280280
return err
281281
}
282282

283+
if sc.KubeCredentials[id] == nil {
284+
sc.KubeCredentials = make(map[string]*config.ExecCredential)
285+
}
283286
sc.KubeCredentials[id] = cred
284287
cf.Servers[server] = sc
285288
return cf.Write()

cmd/server.go

+6-2
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,12 @@ func serverCurrent(ctx *cli.Context) error {
7171
}
7272

7373
serverName := cf.CurrentServer
74-
URL := cf.Servers[serverName].URL
75-
fmt.Printf("Name: %s URL: %s\n", serverName, URL)
74+
currentServer, found := cf.Servers[serverName]
75+
if !found {
76+
return errors.New("Current server not set")
77+
}
78+
79+
fmt.Printf("Name: %s URL: %s\n", serverName, currentServer.URL)
7680
return nil
7781
}
7882

0 commit comments

Comments
 (0)