-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathkubernetes.go
169 lines (156 loc) · 4.8 KB
/
kubernetes.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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
package kubegen
import (
kapi "k8s.io/api/core/v1"
kselector "k8s.io/apimachinery/pkg/fields"
kclient "k8s.io/client-go/kubernetes"
krest "k8s.io/client-go/rest"
kcache "k8s.io/client-go/tools/cache"
kcmd "k8s.io/client-go/tools/clientcmd"
)
// Initializes a new Kubernetes API Client
func newKubeClient(c Config) (*kclient.Clientset, error) {
var config *krest.Config
var err error
if c.Host == "" && !c.UseInClusterConfig {
// use the current context in kubeconfig
config, err = kcmd.BuildConfigFromFlags("", c.Kubeconfig)
if err != nil {
return nil, err
}
} else if c.UseInClusterConfig {
config, err = krest.InClusterConfig()
if err != nil {
return nil, err
}
} else {
config = &krest.Config{
Host: c.Host,
ContentConfig: krest.ContentConfig{GroupVersion: &kapi.SchemeGroupVersion},
}
}
return kclient.NewForConfig(config)
}
func podsListWatch(client *kclient.Clientset, node string) *kcache.ListWatch {
var selector kselector.Selector
if selector = kselector.Everything(); node != "" {
selector = kselector.OneTermEqualSelector("spec.nodeName", node)
}
return kcache.NewListWatchFromClient(client.CoreV1().RESTClient(), "pods", kapi.NamespaceAll, selector)
}
func svcListWatch(client *kclient.Clientset) *kcache.ListWatch {
return kcache.NewListWatchFromClient(client.CoreV1().RESTClient(), "services", kapi.NamespaceAll, kselector.Everything())
}
func epListWatch(client *kclient.Clientset) *kcache.ListWatch {
return kcache.NewListWatchFromClient(client.CoreV1().RESTClient(), "endpoints", kapi.NamespaceAll, kselector.Everything())
}
func watchPods(client *kclient.Clientset, node string, ch chan<- *kapi.Pod, stopCh chan struct{}) kcache.Store {
store, controller := kcache.NewInformer(
podsListWatch(client, node),
&kapi.Pod{},
0,
kcache.ResourceEventHandlerFuncs{
AddFunc: func(v any) {
if p, ok := v.(*kapi.Pod); ok {
ch <- p
}
},
UpdateFunc: func(ov, nv any) {
if p, ok := nv.(*kapi.Pod); ok {
ch <- p
}
},
DeleteFunc: func(v any) {
if p, ok := v.(*kapi.Pod); ok {
ch <- p
}
},
})
go controller.Run(stopCh)
return store
}
func watchServices(client *kclient.Clientset, ch chan<- *kapi.Service, stopCh chan struct{}) kcache.Store {
store, controller := kcache.NewInformer(
svcListWatch(client),
&kapi.Service{},
0,
kcache.ResourceEventHandlerFuncs{
AddFunc: func(v any) {
if s, ok := v.(*kapi.Service); ok {
ch <- s
}
},
UpdateFunc: func(ov, nv any) {
if s, ok := nv.(*kapi.Service); ok {
ch <- s
}
},
DeleteFunc: func(v any) {
if s, ok := v.(*kapi.Service); ok {
ch <- s
}
},
})
go controller.Run(stopCh)
return store
}
func watchEndpoints(client *kclient.Clientset, ch chan<- *kapi.Endpoints, stopCh chan struct{}) kcache.Store {
store, controller := kcache.NewInformer(
epListWatch(client),
&kapi.Endpoints{},
0,
kcache.ResourceEventHandlerFuncs{
AddFunc: func(v any) {
if e, ok := v.(*kapi.Endpoints); ok {
ch <- e
}
},
UpdateFunc: func(ov, nv any) {
if e, ok := nv.(*kapi.Endpoints); ok {
ch <- e
}
},
DeleteFunc: func(v any) {
if e, ok := v.(*kapi.Endpoints); ok {
ch <- e
}
},
})
go controller.Run(stopCh)
return store
}
// IsPodReady returns true if a pod is ready; false otherwise.
func IsPodReady(pod *kapi.Pod) bool {
return isPodReadyConditionTrue(pod.Status)
}
// IsPodReadyConditionTrue returns true if a pod is ready; false otherwise.
func isPodReadyConditionTrue(status kapi.PodStatus) bool {
condition := getPodReadyCondition(status)
return condition != nil && condition.Status == kapi.ConditionTrue
}
// GetPodReadyCondition extracts the pod ready condition from the given status and returns that.
// Returns nil if the condition is not present.
func getPodReadyCondition(status kapi.PodStatus) *kapi.PodCondition {
_, condition := getPodCondition(&status, kapi.PodReady)
return condition
}
// GetPodCondition extracts the provided condition from the given status and returns that.
// Returns nil and -1 if the condition is not present, and the index of the located condition.
func getPodCondition(status *kapi.PodStatus, conditionType kapi.PodConditionType) (int, *kapi.PodCondition) {
if status == nil {
return -1, nil
}
return getPodConditionFromList(status.Conditions, conditionType)
}
// GetPodConditionFromList extracts the provided condition from the given list of condition and
// returns the index of the condition and the condition. Returns -1 and nil if the condition is not present.
func getPodConditionFromList(conditions []kapi.PodCondition, conditionType kapi.PodConditionType) (int, *kapi.PodCondition) {
if conditions == nil {
return -1, nil
}
for i := range conditions {
if conditions[i].Type == conditionType {
return i, &conditions[i]
}
}
return -1, nil
}