-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathget.go
146 lines (131 loc) · 3.18 KB
/
get.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
137
138
139
140
141
142
143
144
145
146
package main
import (
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
"os"
"path"
"strings"
"k8s.io/kubernetes/pkg/api"
client "k8s.io/kubernetes/pkg/client/unversioned"
)
func getNewestMasterTag(tagList []string) string {
for _, tag := range tagList {
if strings.Index(tag, "master-") != -1 {
return tag
}
}
return "latest"
}
func getTagList(image string) []string {
url := QUAYIO + path.Join(image, "tag")
resp, err := http.Get(url)
if err != nil {
fmt.Fprintln(os.Stderr, err)
os.Exit(1)
}
defer resp.Body.Close()
var f interface{}
byteArray, _ := ioutil.ReadAll(resp.Body)
err = json.Unmarshal(byteArray, &f)
if err != nil {
fmt.Fprintln(os.Stderr, err)
os.Exit(1)
}
var tagList = []string{}
m := f.(map[string]interface{})
for _, v := range m {
switch vv := v.(type) {
case string:
case int:
case bool:
case []interface{}:
for _, u := range vv {
_, ok := u.(map[string]interface{})["name"]
if ok {
tagList = append(tagList, u.(map[string]interface{})["name"].(string))
}
}
default:
}
}
return tagList
}
func getPodsWithService(kubeClient *client.Client, service, namespace string) []api.Pod {
pods := getPods(kubeClient, namespace)
var podsWithService = []api.Pod{}
for _, pod := range pods {
if pod.Labels["name"] == service {
podsWithService = append(podsWithService, pod)
}
}
if len(podsWithService) == 0 {
fmt.Println("No pods with the service don't exist.")
os.Exit(1)
}
return podsWithService
}
func getBlueAndGreenPods(kubeClient *client.Client, service, namespace string) ([]api.Pod, []api.Pod) {
pods := getPods(kubeClient, namespace)
var bluePods = []api.Pod{}
var greenPods = []api.Pod{}
for _, pod := range pods {
if pod.Labels["name"] == service {
if pod.Labels["color"] == "blue" {
bluePods = append(bluePods, pod)
} else if pod.Labels["color"] == "green" {
greenPods = append(greenPods, pod)
}
}
}
if len(bluePods) == 0 || len(greenPods) == 0 {
fmt.Println("blue-green pods don't exist.")
os.Exit(1)
}
return bluePods, greenPods
}
func getTargetPod(kubeClient *client.Client, podName string, namespace string) api.Pod {
if namespace == "" {
namespace = "default"
}
targetPod, err := kubeClient.Pods(namespace).Get(podName)
if err != nil {
fmt.Fprintln(os.Stderr, err)
os.Exit(1)
}
return *targetPod
}
func getTargetService(kubeClient *client.Client, serviceName string, namespace string) api.Service {
if namespace == "" {
namespace = "default"
}
targetService, err := kubeClient.Services(namespace).Get(serviceName)
if err != nil {
fmt.Fprintln(os.Stderr, err)
os.Exit(1)
}
return *targetService
}
func getServices(kubeClient *client.Client, namespace string) []api.Service {
if namespace == "" {
namespace = api.NamespaceAll
}
services, err := kubeClient.Services(namespace).List(api.ListOptions{})
if err != nil {
fmt.Fprintln(os.Stderr, err)
os.Exit(1)
}
return services.Items
}
func getPods(kubeClient *client.Client, namespace string) []api.Pod {
if namespace == "" {
namespace = api.NamespaceAll
}
pods, err := kubeClient.Pods(namespace).List(api.ListOptions{})
if err != nil {
fmt.Fprintln(os.Stderr, err)
os.Exit(1)
}
return pods.Items
}