-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExample-Run.sh
executable file
·51 lines (50 loc) · 1.17 KB
/
Example-Run.sh
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
echo '{
"cluster_one": {
"Server": "https://api.cluster1.local",
"Token": "<TOKEN/GUID>"
},
"cluster_two": {
"Server": "https://api.cluster2.local",
"Token": "<TOKEN/GUID>"
}
}' > ~/maps.json
echo '{
"kubernetes": {
"cluster_one": [
{
"groups": {
"managed": [
"somenamespace1-somegroup1",
"somenamespace2-somegroup2"
],
"non-managed": [
"somenamespace3-somegroup3"
]
},
"token-ending": "xxxxxx",
"username": "userid"
}
],
"cluster_two": [
{
"groups": {
"managed": [
"somenamespace1-somegroup1",
"somenamespace2-somegroup2"
],
"non-managed": [
"somenamespace3-somegroup3"
]
},
"token-ending": "xxxxxx",
"username": "userid"
}
]
}
}' > ~/config.json
docker run --rm \
-v "$(echo ~)/.kube":/root/.kube \
-v "$(echo ~)/config.json":/root/config.json:ro \
-v "$(echo ~)/maps.json":/root/maps.json:ro \
rhysjtevans/k8s-context:latest
docker image rm rhysjtevans/k8s-context:latest