This repository was archived by the owner on Nov 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 253
/
Copy pathcontext.go
126 lines (108 loc) · 3.17 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
//go:build kube
// +build kube
/*
Copyright 2020 Docker Compose CLI authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package kube
import (
"fmt"
"github.com/AlecAivazis/survey/v2/terminal"
"github.com/docker/compose/v2/pkg/api"
"github.com/docker/compose/v2/pkg/prompt"
"github.com/docker/compose-cli/api/context/store"
"github.com/docker/compose-cli/kube/resources"
)
// ContextParams options for creating a Kubernetes context
type ContextParams struct {
KubeContextName string
Description string
KubeConfigPath string
FromEnvironment bool
}
// CreateContextData create Docker context data
func (cp ContextParams) CreateContextData() (interface{}, string, error) {
if cp.FromEnvironment {
// we use the current kubectl context from a $KUBECONFIG path
return store.KubeContext{
FromEnvironment: cp.FromEnvironment,
}, cp.getDescription(), nil
}
user := prompt.User{}
selectContext := func() error {
contexts, err := resources.ListAvailableKubeConfigContexts(cp.KubeConfigPath)
if err != nil {
return err
}
selected, err := user.Select("Select kubeconfig context", contexts)
if err != nil {
if err == terminal.InterruptErr {
return api.ErrCanceled
}
return err
}
cp.KubeContextName = contexts[selected]
return nil
}
if cp.KubeConfigPath != "" {
if cp.KubeContextName != "" {
return store.KubeContext{
ContextName: cp.KubeContextName,
KubeconfigPath: cp.KubeConfigPath,
FromEnvironment: cp.FromEnvironment,
}, cp.getDescription(), nil
}
err := selectContext()
if err != nil {
return nil, "", err
}
} else {
// interactive
var options []string
var actions []func() error
options = append(options, "Context from kubeconfig file")
actions = append(actions, selectContext)
options = append(options, "Kubernetes environment variables")
actions = append(actions, func() error {
cp.FromEnvironment = true
return nil
})
selected, err := user.Select("Create a Docker context using:", options)
if err != nil {
if err == terminal.InterruptErr {
return nil, "", api.ErrCanceled
}
return nil, "", err
}
err = actions[selected]()
if err != nil {
return nil, "", err
}
}
return store.KubeContext{
ContextName: cp.KubeContextName,
KubeconfigPath: cp.KubeConfigPath,
FromEnvironment: cp.FromEnvironment,
}, cp.getDescription(), nil
}
func (cp ContextParams) getDescription() string {
if cp.Description != "" {
return cp.Description
}
if cp.FromEnvironment {
return "From environment variables"
}
configFile := "default kube config"
if cp.KubeConfigPath != "" {
configFile = cp.KubeConfigPath
}
return fmt.Sprintf("%s (in %s)", cp.KubeContextName, configFile)
}