-
Notifications
You must be signed in to change notification settings - Fork 1
/
context.go
136 lines (120 loc) · 3.22 KB
/
context.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
package cmd
import (
"fmt"
"io"
"sort"
"github.com/spf13/cobra"
"github.com/jenkins-x/jx/pkg/jx/cmd/templates"
"github.com/jenkins-x/jx/pkg/kube"
"github.com/jenkins-x/jx/pkg/util"
"gopkg.in/AlecAivazis/survey.v1"
"k8s.io/client-go/tools/clientcmd"
cmdutil "github.com/jenkins-x/jx/pkg/jx/cmd/util"
)
type ContextOptions struct {
CommonOptions
}
var (
context_long = templates.LongDesc(`
Displays or changes the current kubernetes context (cluster).`)
context_example = templates.Examples(`
# to select the context to switch to
jx context
# or the more concise alias
jx ctx
# view the current context
jx ctx -b
# Change the current namespace to 'minikube'
jx ctx minikube`)
)
func NewCmdContext(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command {
options := &ContextOptions{
CommonOptions: CommonOptions{
Factory: f,
Out: out,
Err: errOut,
},
}
cmd := &cobra.Command{
Use: "context",
Aliases: []string{"ctx"},
Short: "View or change the current kubernetes context (kubernetes cluster)",
Long: context_long,
Example: context_example,
Run: func(cmd *cobra.Command, args []string) {
options.Cmd = cmd
options.Args = args
err := options.Run()
cmdutil.CheckErr(err)
},
}
options.addCommonFlags(cmd)
return cmd
}
func (o *ContextOptions) Run() error {
config, po, err := kube.LoadConfig()
if err != nil {
return err
}
if config == nil || config.Contexts == nil || len(config.Contexts) == 0 {
return fmt.Errorf("No kubernetes contexts available! Try create or connect to cluster?")
}
contextNames := []string{}
for k, v := range config.Contexts {
if k != "" && v != nil {
contextNames = append(contextNames, k)
}
}
sort.Strings(contextNames)
ctxName := ""
args := o.Args
if len(args) > 0 {
ctxName = args[0]
if util.StringArrayIndex(contextNames, ctxName) < 0 {
return util.InvalidArg(ctxName, contextNames)
}
}
if ctxName == "" && !o.BatchMode {
defaultCtxName := config.CurrentContext
pick, err := o.PickContext(contextNames, defaultCtxName)
if err != nil {
return err
}
ctxName = pick
}
info := util.ColorInfo
if ctxName != "" && ctxName != config.CurrentContext {
ctx := config.Contexts[ctxName]
if ctx == nil {
return fmt.Errorf("Could not find kubernetes context %s", ctxName)
}
newConfig := *config
newConfig.CurrentContext = ctxName
err = clientcmd.ModifyConfig(po, newConfig, false)
if err != nil {
return fmt.Errorf("Failed to update the kube config %s", err)
}
fmt.Fprintf(o.Out, "Now using namespace '%s' on server '%s'.\n", info(ctx.Namespace), info(kube.Server(config, ctx)))
} else {
ns := kube.CurrentNamespace(config)
server := kube.CurrentServer(config)
fmt.Fprintf(o.Out, "Using namespace '%s' from context named '%s' on server '%s'.\n", info(ns), info(config.CurrentContext), info(server))
}
return nil
}
func (o *ContextOptions) PickContext(names []string, defaultValue string) (string, error) {
if len(names) == 0 {
return "", nil
}
if len(names) == 1 {
return names[0], nil
}
name := ""
prompt := &survey.Select{
Message: "Change kubernetes context:",
Options: names,
Default: defaultValue,
}
err := survey.AskOne(prompt, &name, nil)
return name, err
}