-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmain.go
More file actions
285 lines (255 loc) · 8.66 KB
/
main.go
File metadata and controls
285 lines (255 loc) · 8.66 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
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
package main
import (
"encoding/json"
"flag"
"fmt"
"k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/fields"
"k8s.io/apimachinery/pkg/types"
"k8s.io/apimachinery/pkg/util/intstr"
"k8s.io/apimachinery/pkg/util/runtime"
"k8s.io/apimachinery/pkg/util/wait"
"k8s.io/client-go/kubernetes"
"k8s.io/client-go/tools/cache"
"k8s.io/client-go/tools/clientcmd"
"k8s.io/client-go/util/workqueue"
"k8s.io/klog"
"log"
"strings"
"time"
netv1 "k8s.io/api/networking/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)
type Controller struct {
indexer cache.Indexer
queue workqueue.RateLimitingInterface
informer cache.Controller
Client *kubernetes.Clientset
}
func NewController(queue workqueue.RateLimitingInterface, indexer cache.Indexer, informer cache.Controller, client *kubernetes.Clientset) *Controller {
return &Controller{
informer: informer,
indexer: indexer,
queue: queue,
Client: client,
}
}
func (c *Controller) processNextItem() bool {
// Wait until there is a new item in the working queue
key, 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(key)
// Invoke the method containing the business logic
err := c.syncToStdout(key.(string))
// Handle the error if something went wrong during the execution of the business logic
c.handleErr(err, key)
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 {
labelValues := strings.Split(key, "/")
obj, exists, err := c.indexer.GetByKey(key)
if err != nil {
klog.Errorf("Fetching object with key %s from store failed with %v", key, err)
return err
}
// Define network policy shell
np := &netv1.NetworkPolicy{}
np.Name = strings.Join(labelValues,"-")
np.Namespace = labelValues[0]
if !exists {
// If pod doesn't exist, delete it. Have to see if pod info actually is returned if it is deleted
fmt.Printf("%s does not exist anymore ... deleting associated network policy\n", key)
err = c.Client.NetworkingV1().NetworkPolicies(np.Namespace).Delete(np.Name, &metav1.DeleteOptions{})
if err != nil {
return err
}
} else {
// Create pod object from obj
pod := obj.(*v1.Pod)
// Loop through containers and find ports
var ports []netv1.NetworkPolicyPort
for _,container := range pod.Spec.Containers {
// Loop through ports
for _,port := range container.Ports {
portNum := intstr.FromInt(int(port.ContainerPort))
npp := netv1.NetworkPolicyPort{
Protocol: &port.Protocol,
Port: &portNum,
}
ports = append(ports, npp)
}
}
ingressRule := netv1.NetworkPolicyIngressRule{
Ports: ports,
}
/*
egressRule := netv1.NetworkPolicyEgressRule{
Ports: ports,
}
*/
np.Spec.Ingress = []netv1.NetworkPolicyIngressRule{ingressRule}
//np.Spec.Egress = []netv1.NetworkPolicyEgressRule{egressRule}
np.Spec.PodSelector = metav1.LabelSelector{
MatchLabels: map[string]string{
"autoNetPolicy" : np.Name,
},
}
// Decide to create or update by trying to get the existing
_, err = c.Client.NetworkingV1().NetworkPolicies(np.Namespace).Update(np)
if err != nil {
fmt.Println("Creating NetworkPolicy for: ", np.Name)
np, err = c.Client.NetworkingV1().NetworkPolicies(np.Namespace).Create(np)
} else {
fmt.Println("Updating NetworkPolicy for: ", np.Name)
np, err = c.Client.NetworkingV1().NetworkPolicies(np.Namespace).Update(np)
}
if err != nil {
fmt.Println("Error during create/update of Network policy: ", err)
return err
}
// Put label on the pod if it doesn't exist
if _, ok := pod.Labels["autoNetPolicy"]; !ok {
fmt.Println("Adding label to: ", np.Name)
// Build label metadata
newLabel := map[string]map[string]map[string]string{
"metadata" : map[string]map[string]string{
"labels" : map[string]string{
"autoNetPolicy" : np.Name,
},
},
}
data, err := json.Marshal(newLabel)
if err != nil {
return err
}
// Add a label to the pod
pod, err = c.Client.CoreV1().Pods(pod.Namespace).Patch(pod.Name, types.MergePatchType, data, "")
if err != nil {
return err
}
}
}
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)
}
func (c *Controller) Run(threadiness int, stopCh chan struct{}) {
defer runtime.HandleCrash()
// Let the workers stop when we are done
defer c.queue.ShutDown()
klog.Info("Starting Pod controller")
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 < threadiness; i++ {
go wait.Until(c.runWorker, time.Second, stopCh)
}
<-stopCh
klog.Info("Stopping Pod controller")
}
func (c *Controller) runWorker() {
for c.processNextItem() {
}
}
func main() {
var kubeconfig string
var master string
var namespaces string
flag.StringVar(&kubeconfig, "kubeconfig", "", "absolute path to the kubeconfig file")
flag.StringVar(&master, "master", "", "master url")
flag.StringVar(&namespaces, "namespaces", "", "command separated list of namespaces")
flag.Parse()
if namespaces == "" {
log.Fatalln("--namespaces not specified with a comma separated list of namespaces")
}
nameSpaces := strings.Split(namespaces,",")
// creates the connection
config, err := clientcmd.BuildConfigFromFlags(master, kubeconfig)
if err != nil {
klog.Fatal(err)
}
// creates the clientset
clientset, err := kubernetes.NewForConfig(config)
if err != nil {
klog.Fatal(err)
}
loop := make(chan int, len(nameSpaces))
// Should create a thread for each namespace passed in
for _,nameSpace := range nameSpaces {
go func(ns string) {
// create the pod watcher
podListWatcher := cache.NewListWatchFromClient(clientset.CoreV1().RESTClient(), "pods", ns, fields.Everything())
// create the workqueue
queue := workqueue.NewRateLimitingQueue(workqueue.DefaultControllerRateLimiter())
// 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.
indexer, informer := cache.NewIndexerInformer(podListWatcher, &v1.Pod{}, 0, 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)
}
},
}, cache.Indexers{})
controller := NewController(queue, indexer, informer, clientset)
fmt.Println("Starting NetworkPolicyController controller for namespace: ", ns)
// Now let's start the controller
stop2 := make(chan struct{})
defer close(stop2)
go controller.Run(1, stop2)
// Wait forever
select {}
}(nameSpace)
}
for len(loop) < len(nameSpaces) {
fmt.Println("Waiting for pods")
time.Sleep(1 * time.Minute)
}
}