This repository has been archived by the owner on Mar 20, 2024. It is now read-only.
forked from cilium/cilium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cnp_event.go
101 lines (91 loc) · 2.93 KB
/
cnp_event.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
// Copyright 2018-2019 Authors of Cilium
//
// 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"
"time"
"github.com/cilium/cilium/pkg/controller"
"github.com/cilium/cilium/pkg/k8s"
cilium_v2 "github.com/cilium/cilium/pkg/k8s/apis/cilium.io/v2"
"github.com/cilium/cilium/pkg/metrics"
"github.com/cilium/cilium/pkg/policy/groups"
"k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/fields"
"k8s.io/apimachinery/pkg/util/runtime"
"k8s.io/apimachinery/pkg/util/wait"
"k8s.io/client-go/tools/cache"
)
func init() {
runtime.ErrorHandlers = []func(error){
k8s.K8sErrorHandler,
}
}
func enableCNPWatcher() error {
_, ciliumV2Controller := k8s.NewInformer(
cache.NewListWatchFromClient(k8s.CiliumClient().CiliumV2().RESTClient(),
"ciliumnetworkpolicies", v1.NamespaceAll, fields.Everything()),
&cilium_v2.CiliumNetworkPolicy{},
0,
cache.ResourceEventHandlerFuncs{
AddFunc: func(obj interface{}) {
metrics.EventTSK8s.SetToCurrentTime()
if cnp := k8s.CopyObjToV2CNP(obj); cnp != nil {
groups.AddDerivativeCNPIfNeeded(cnp.CiliumNetworkPolicy)
}
},
UpdateFunc: func(oldObj, newObj interface{}) {
metrics.EventTSK8s.SetToCurrentTime()
if oldCNP := k8s.CopyObjToV2CNP(oldObj); oldCNP != nil {
if newCNP := k8s.CopyObjToV2CNP(newObj); newCNP != nil {
if k8s.EqualV2CNP(oldCNP, newCNP) {
return
}
groups.UpdateDerivativeCNPIfNeeded(newCNP.CiliumNetworkPolicy, oldCNP.CiliumNetworkPolicy)
}
}
},
DeleteFunc: func(obj interface{}) {
metrics.EventTSK8s.SetToCurrentTime()
cnp := k8s.CopyObjToV2CNP(obj)
if cnp == nil {
deletedObj, ok := obj.(cache.DeletedFinalStateUnknown)
if !ok {
return
}
// Delete was not observed by the watcher but is
// removed from kube-apiserver. This is the last
// known state and the object no longer exists.
cnp = k8s.CopyObjToV2CNP(deletedObj.Obj)
if cnp == nil {
return
}
}
// The derivative policy will be deleted by the parent but need
// to delete the cnp from the pooling.
groups.DeleteDerivativeFromCache(cnp.CiliumNetworkPolicy)
},
},
k8s.ConvertToCNP,
)
go ciliumV2Controller.Run(wait.NeverStop)
controller.NewManager().UpdateController("cnp-to-groups",
controller.ControllerParams{
DoFunc: func(ctx context.Context) error {
groups.UpdateCNPInformation()
return nil
},
RunInterval: 5 * time.Minute,
})
return nil
}