-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
executable file
·322 lines (275 loc) · 9.54 KB
/
main.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
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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
/*
Copyright 2017 The Kubernetes 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 main
import (
"context"
"flag"
"fmt"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/util/runtime"
"k8s.io/apimachinery/pkg/watch"
"net/http"
"time"
_ "net/http/pprof"
v1 "k8s.io/api/core/v1"
runtimeObj "k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/util/wait"
"k8s.io/client-go/kubernetes"
"k8s.io/client-go/rest"
"k8s.io/client-go/tools/cache"
"k8s.io/client-go/tools/clientcmd"
"k8s.io/client-go/util/workqueue"
)
// Controller demonstrates how to implement a controller with client-go.
type Controller struct {
indexer cache.Store
queue workqueue.Interface
informer cache.SharedInformer
resource string
}
// Pod data
type Pod = v1.Pod
// Resource data
type Resource = runtimeObj.Object
// NewController creates a new Controller.
func NewController(queue workqueue.Interface, indexer cache.Store, informer cache.SharedInformer, resource string) *Controller {
return &Controller{
informer: informer,
indexer: indexer,
queue: queue,
resource: resource,
}
}
type item struct {
object interface{}
objectRaw interface{}
state string
}
func (c *Controller) processNextItem() bool {
// Wait until there is a new item in the working queue
obj, quit := c.queue.Get()
if quit {
return false
}
// Tell the queue that we are done with processing this key. This unblocks the key for other workers
// This allows safe parallel processing because two pods with the same key are never processed in
// parallel.
defer c.queue.Done(obj)
// Invoke the method containing the business logic
_ = c.syncToStdout(obj.(string))
// Handle the error if something went wrong during the execution of the business logic
//c.handleErr(err, obj)
return true
}
// syncToStdout is the business logic of the controller. In this controller it simply prints
// information about the pod to stdout. In case an error happened, it has to simply return the error.
// The retry logic should not be part of the business logic.
func (c *Controller) syncToStdout(key string) error {
resource := c.resource
if resource == "pod" {
o, exists, err := c.indexer.GetByKey(key)
obj := o.(*Pod)
fmt.Println("\nDiscovered Pod ", obj.Name)
if err != nil {
return err
}
if !exists {
// Below we will warm up our cache with a Pod, so that we will see a delete for one pod
fmt.Printf("%s %s does not exist anymore\n", resource, key)
} else {
// Note that you also have to check the uid if you have a local controlled resource, which
// is dependent on the actual instance, to detect that a Pod was recreated with the same name
// fmt.Printf("%s %s\n", resource, obj.(*v1.Pod).GetName())
// for key, element := range obj.(*v1.Pod).GetLabels() {
// fmt.Println("Pod:", obj.(*v1.Pod).GetName(), "Key:", key, "=>", "label:", element)
// }
}
} else if resource == "namespace" {
obj, exists, err := c.indexer.GetByKey(key)
if err != nil {
return err
}
if !exists {
// Below we will warm up our cache with a Pod, so that we will see a delete for one pod
fmt.Printf("%s %s does not exist anymore\n", resource, key)
} else {
// Note that you also have to check the uid if you have a local controlled resource, which
// is dependent on the actual instance, to detect that a Pod was recreated with the same name
fmt.Printf("%s %s size:%d \n", resource, obj.(*v1.Namespace).GetName(), obj.(*v1.Namespace).Size())
}
} else if resource == "node" {
obj, exists, err := c.indexer.GetByKey(key)
if err != nil {
return err
}
if !exists {
// Below we will warm up our cache with a Pod, so that we will see a delete for one pod
fmt.Printf("%s %s does not exist anymore\n", resource, key)
} else {
// Note that you also have to check the uid if you have a local controlled resource, which
// is dependent on the actual instance, to detect that a Pod was recreated with the same name
fmt.Printf("%s %s\n", resource, obj.(*v1.Node).GetName())
}
}
return nil
}
// handleErr checks if an error happened and makes sure we will retry later.
func (c *Controller) handleErr(err error, key interface{}) {
//if err == nil {
// // Forget about the #AddRateLimited history of the key on every successful synchronization.
// // This ensures that future processing of updates for this key is not delayed because of
// // an outdated error history.
// c.queue.Forget(key)
// return
//}
//
//// This controller retries 5 times if something goes wrong. After that, it stops trying.
//if c.queue.NumRequeues(key) < 5 {
// klog.Infof("Error syncing pod %v: %v", key, err)
//
// // Re-enqueue the key rate limited. Based on the rate limiter on the
// // queue and the re-enqueue history, the key will be processed later again.
// c.queue.AddRateLimited(key)
// return
//}
//
//c.queue.Forget(key)
//// Report to an external entity that, even after several retries, we could not successfully process this key
//runtime.HandleError(err)
//klog.Infof("Dropping pod %q out of the queue: %v", key, err)
}
// Run begins watching and syncing.
func (c *Controller) Run(workers int, stopCh chan struct{}) {
defer runtime.HandleCrash()
// Let the workers stop when we are done
defer c.queue.ShutDown()
go c.informer.Run(stopCh)
// Wait for all involved caches to be synced, before processing items from the queue is started
if !cache.WaitForCacheSync(stopCh, c.informer.HasSynced) {
runtime.HandleError(fmt.Errorf("Timed out waiting for caches to sync"))
return
}
for i := 0; i < workers; i++ {
go wait.Until(c.runWorker, time.Second, stopCh)
}
<-stopCh
}
func (c *Controller) runWorker() {
for c.processNextItem() {
}
}
func main() {
var kubeconfig string
var master string
flag.StringVar(&kubeconfig, "kubeconfig", "", "absolute path to the kubeconfig file")
flag.StringVar(&master, "master", "", "master url")
flag.Parse()
// Server for pprof
go func() {
fmt.Println(http.ListenAndServe("localhost:6060", nil))
}()
// creates the connection
config, err := clientcmd.BuildConfigFromFlags(master, kubeconfig)
if err != nil {
config, err = rest.InClusterConfig()
if err != nil {
panic(err.Error())
}
}
// creates the clientset
clientset, err := kubernetes.NewForConfig(config)
if err != nil {
}
//pods, err := podListWatcher.ListFunc(meta_v1.ListOptions{})
//fmt.Printf("Size of Pods: %T, %d\n", pods, unsafe.Sizeof(pods))
var store cache.Store
var queue workqueue.Interface
informer, _, err := NewInformer(clientset, &Pod{}, nil)
if err != nil {
}
// create the workqueue
store = informer.GetStore()
queue = workqueue.NewNamed("pod")
// Bind the workqueue to a cache with the help of an informer. This way we make sure that
// whenever the cache is updated, the pod key is added to the workqueue.
// Note that when we finally process the item from the workqueue, we might see a newer version
// of the Pod than the version which was responsible for triggering the update.
//POD
informer.AddEventHandler(cache.ResourceEventHandlerFuncs{
AddFunc: func(obj interface{}) {
key, err := cache.MetaNamespaceKeyFunc(obj)
if err == nil {
queue.Add(key)
}
},
UpdateFunc: func(old interface{}, new interface{}) {
key, err := cache.MetaNamespaceKeyFunc(new)
if err == nil {
queue.Add(key)
}
},
DeleteFunc: func(obj interface{}) {
// IndexerInformer uses a delta queue, therefore for deletes we have to use this
// key function.
key, err := cache.DeletionHandlingMetaNamespaceKeyFunc(obj)
if err == nil {
queue.Add(key)
}
},
})
controller := NewController(queue, store, informer, "pod")
// We can now warm up the cache for initial synchronization.
// Let's suppose that we knew about a pod "mypod" on our last run, therefore add it to the cache.
// If this pod is not there anymore, the controller will be notified about the removal after the
// cache has synchronized.
// indexer.Add(&v1.Pod{
// ObjectMeta: meta_v1.ObjectMeta{
// Name: "mypod",
// Namespace: v1.NamespaceDefault,
// },
// })
// Now let's start the controller
stop := make(chan struct{})
defer close(stop)
go controller.Run(1, stop)
// Wait forever
select {}
}
// NewInformer creates an informer for a given resource
func NewInformer(client kubernetes.Interface, resource Resource, indexers cache.Indexers) (cache.SharedInformer, string, error) {
var objType string
var listwatch *cache.ListWatch
ctx := context.TODO()
switch resource.(type) {
case *Pod:
p := client.CoreV1().Pods("")
listwatch = &cache.ListWatch{
ListFunc: func(options metav1.ListOptions) (runtimeObj.Object, error) {
//nodeSelector(&options, opts)
return p.List(ctx, options)
},
WatchFunc: func(options metav1.ListOptions) (watch.Interface, error) {
//nodeSelector(&options, opts)
return p.Watch(ctx, options)
},
}
objType = "pod"
default:
return nil, "", fmt.Errorf("unsupported resource type for watching %T", resource)
}
if indexers == nil {
indexers = cache.Indexers{}
}
syncPeriod := time.Second * 120
return cache.NewSharedIndexInformer(listwatch, resource, syncPeriod, indexers), objType, nil
}