-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathkubeconfig.go
More file actions
223 lines (181 loc) · 5.14 KB
/
kubeconfig.go
File metadata and controls
223 lines (181 loc) · 5.14 KB
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
package main
import (
"fmt"
"os"
"os/user"
"path/filepath"
"sort"
"strings"
"gopkg.in/yaml.v3"
)
func ReadKubeConfig() (*KubeConfig, error) {
kubeConfigFile, err := getKubeConfigFile()
if err != nil {
return nil, fmt.Errorf("get file path: %w", err)
}
conf, err := readKubeConfigFromFile(kubeConfigFile)
if err != nil {
return nil, fmt.Errorf("read file: %w", err)
}
return conf, nil
}
func getKubeConfigFile() (string, error) {
kubeConfigFile := os.Getenv("KUBECONFIG")
if len(kubeConfigFile) == 0 {
// try default config path in user home dir
usr, err := user.Current()
if err != nil {
return "", err
}
kubeConfigFile = filepath.Join(usr.HomeDir, "/.kube/config")
}
return kubeConfigFile, nil
}
type KubeConfig struct {
file string
data map[string]interface{}
}
func readKubeConfigFromFile(file string) (*KubeConfig, error) {
rawData, err := os.ReadFile(file)
if err != nil {
return nil, err
}
var data map[string]interface{}
if err := yaml.Unmarshal(rawData, &data); err != nil {
return nil, err
}
return &KubeConfig{
file: file,
data: data,
}, nil
}
func (conf *KubeConfig) File() string {
return conf.file
}
func (conf *KubeConfig) Save() error {
rawData, err := yaml.Marshal(&conf.data)
if err != nil {
return fmt.Errorf("marshal config: %w", err)
}
return os.WriteFile(conf.file, rawData, os.ModePerm)
}
type Context struct {
Context ContextData `yaml:"context"`
Name string `yaml:"name"`
}
type ContextData struct {
Cluster string `yaml:"cluster"`
Namespace string `yaml:"namespace"`
User string `yaml:"user"`
}
func (conf *KubeConfig) Contexts() ([]Context, error) {
contextsObj, ok := conf.data["contexts"]
if !ok {
return nil, fmt.Errorf("missing 'contexts' in kube-config")
}
contextsList, ok := contextsObj.([]interface{})
if !ok {
return nil, fmt.Errorf("invalid type '%T' for 'contexts' in kube-config", contextsObj)
}
contexts := make([]Context, 0)
for i, obj := range contextsList {
objMap, ok := obj.(map[string]interface{})
if !ok {
return nil, fmt.Errorf("invalid type '%T' for 'contexts[%d]' in kube-config", obj, i)
}
nameObj, ok := objMap["name"]
if !ok {
return nil, fmt.Errorf("missing 'contexts[%d].name' in kube-config", i)
}
name, ok := nameObj.(string)
if !ok {
return nil, fmt.Errorf("invalid type '%T' for 'contexts[%d].name' in kube-config", nameObj, i)
}
contextObj, ok := objMap["context"]
if !ok {
return nil, fmt.Errorf("missing 'contexts[%d].context' in kube-config", i)
}
contextMap, ok := contextObj.(map[string]interface{})
if !ok {
return nil, fmt.Errorf("invalid type '%T' for 'contexts[%d].context' in kube-config", contextObj, i)
}
clusterObj, ok := contextMap["cluster"]
if !ok {
return nil, fmt.Errorf("missing 'contexts[%d].context.cluster' in kube-config", i)
}
clusterName, ok := clusterObj.(string)
if !ok {
return nil, fmt.Errorf("invalid type '%T' for 'contexts[%d].context.cluster' in kube-config", clusterObj, i)
}
namespaceObj, ok := contextMap["namespace"]
if !ok {
return nil, fmt.Errorf("missing 'contexts[%d].context.namespace' in kube-config", i)
}
namespace, ok := namespaceObj.(string)
if !ok {
return nil, fmt.Errorf("invalid type '%T' for 'contexts[%d].context.namespace' in kube-config", namespaceObj, i)
}
userObj, ok := contextMap["user"]
if !ok {
return nil, fmt.Errorf("missing 'contexts[%d].context.user' in kube-config", i)
}
userName, ok := userObj.(string)
if !ok {
return nil, fmt.Errorf("invalid type '%T' for 'contexts[%d].context.user' in kube-config", userObj, i)
}
contexts = append(contexts, Context{
Context: ContextData{
Cluster: clusterName,
Namespace: namespace,
User: userName,
},
Name: name,
})
}
return contexts, nil
}
func (conf *KubeConfig) SetContexts(contexts []Context) {
conf.data["contexts"] = contexts
}
func (conf *KubeConfig) SelectedContext() (string, error) {
currentContextObj, ok := conf.data["current-context"]
if !ok {
return "", nil
}
currentContext, ok := currentContextObj.(string)
if !ok {
return "", fmt.Errorf("invalid type '%T' for 'current-context' in kube-config", currentContextObj)
}
return currentContext, nil
}
func (conf *KubeConfig) SetSelectedContext(contextName string) {
conf.data["current-context"] = contextName
}
type ClusterWithContexts struct {
Name string
Contexts []Context
}
func GroupContextsByCluster(contexts []Context) []ClusterWithContexts {
clustersMap := make(map[string][]Context)
for _, c := range contexts {
if cluster, ok := clustersMap[c.Context.Cluster]; ok {
clustersMap[c.Context.Cluster] = append(cluster, c)
} else {
clustersMap[c.Context.Cluster] = []Context{c}
}
}
clusters := make([]ClusterWithContexts, 0)
for clusterName, contexts := range clustersMap {
sort.Slice(contexts, func(i, j int) bool {
return strings.Compare(contexts[i].Name, contexts[j].Name) < 0
})
clusters = append(clusters, ClusterWithContexts{
Name: clusterName,
Contexts: contexts,
})
}
sort.Slice(clusters, func(i, j int) bool {
return strings.Compare(clusters[i].Name, clusters[j].Name) < 0
})
return clusters
}