-
Notifications
You must be signed in to change notification settings - Fork 3k
/
ccnp_event.go
133 lines (118 loc) · 4.42 KB
/
ccnp_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
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
// SPDX-License-Identifier: Apache-2.0
// Copyright Authors of Cilium
package main
import (
"context"
"time"
"k8s.io/apimachinery/pkg/fields"
"k8s.io/apimachinery/pkg/util/wait"
"k8s.io/client-go/tools/cache"
operatorOption "github.com/cilium/cilium/operator/option"
"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/k8s/informer"
v1 "github.com/cilium/cilium/pkg/k8s/slim/k8s/apis/meta/v1"
"github.com/cilium/cilium/pkg/k8s/watchers/resources"
"github.com/cilium/cilium/pkg/kvstore/store"
"github.com/cilium/cilium/pkg/metrics"
"github.com/cilium/cilium/pkg/option"
"github.com/cilium/cilium/pkg/policy/groups"
)
func k8sEventMetric(scope, action string) {
metrics.EventTS.WithLabelValues(metrics.LabelEventSourceK8s, scope, action).SetToCurrentTime()
}
// enableCCNPWatcher is similar to enableCNPWatcher but handles the watch events for
// clusterwide policies. Since, internally Clusterwide policies are implemented
// using CiliumNetworkPolicy itself, the entire implementation uses the methods
// associcated with CiliumNetworkPolicy.
func enableCCNPWatcher() error {
enableCNPStatusUpdates := kvstoreEnabled() && option.Config.K8sEventHandover && !option.Config.DisableCNPStatusUpdates
if enableCNPStatusUpdates {
log.Info("Starting a CCNP Status handover from kvstore to k8s")
}
log.Info("Starting CCNP derivative handler")
var (
ccnpStatusMgr *k8s.CCNPStatusEventHandler
)
ccnpStore := cache.NewStore(cache.DeletionHandlingMetaNamespaceKeyFunc)
if enableCNPStatusUpdates {
ccnpStatusMgr = k8s.NewCCNPStatusEventHandler(ccnpStore, operatorOption.Config.CNPStatusUpdateInterval)
ccnpSharedStore, err := store.JoinSharedStore(store.Configuration{
Prefix: k8s.CCNPStatusesPath,
KeyCreator: func() store.Key {
return &k8s.CNPNSWithMeta{}
},
Observer: ccnpStatusMgr,
})
if err != nil {
return err
}
// It is safe to update the CCNP store here given the CCNP Store
// will only be used by StartStatusHandler method which is used in the
// cilium v2 controller below.
ccnpStatusMgr.UpdateCNPStore(ccnpSharedStore)
}
ciliumV2Controller := informer.NewInformerWithStore(
cache.NewListWatchFromClient(k8s.CiliumClient().CiliumV2().RESTClient(),
cilium_v2.CCNPPluralName, v1.NamespaceAll, fields.Everything()),
&cilium_v2.CiliumClusterwideNetworkPolicy{},
0,
cache.ResourceEventHandlerFuncs{
AddFunc: func(obj interface{}) {
k8sEventMetric(resources.MetricCCNP, resources.MetricCreate)
if cnp := k8s.ObjToSlimCNP(obj); cnp != nil {
// We need to deepcopy this structure because we are writing
// fields.
// See https://github.com/cilium/cilium/blob/27fee207f5422c95479422162e9ea0d2f2b6c770/pkg/policy/api/ingress.go#L112-L134
cnpCpy := cnp.DeepCopy()
groups.AddDerivativeCCNPIfNeeded(cnpCpy.CiliumNetworkPolicy)
if enableCNPStatusUpdates {
ccnpStatusMgr.StartStatusHandler(cnpCpy)
}
}
},
UpdateFunc: func(oldObj, newObj interface{}) {
k8sEventMetric(resources.MetricCCNP, resources.MetricUpdate)
if oldCNP := k8s.ObjToSlimCNP(oldObj); oldCNP != nil {
if newCNP := k8s.ObjToSlimCNP(newObj); newCNP != nil {
if oldCNP.DeepEqual(newCNP) {
return
}
// We need to deepcopy this structure because we are writing
// fields.
// See https://github.com/cilium/cilium/blob/27fee207f5422c95479422162e9ea0d2f2b6c770/pkg/policy/api/ingress.go#L112-L134
newCNPCpy := newCNP.DeepCopy()
oldCNPCpy := oldCNP.DeepCopy()
groups.UpdateDerivativeCCNPIfNeeded(newCNPCpy.CiliumNetworkPolicy, oldCNPCpy.CiliumNetworkPolicy)
}
}
},
DeleteFunc: func(obj interface{}) {
k8sEventMetric(resources.MetricCCNP, resources.MetricDelete)
cnp := k8s.ObjToSlimCNP(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)
if enableCNPStatusUpdates {
ccnpStatusMgr.StopStatusHandler(cnp)
}
},
},
k8s.ConvertToCCNP,
ccnpStore,
)
go ciliumV2Controller.Run(wait.NeverStop)
controller.NewManager().UpdateController("ccnp-to-groups",
controller.ControllerParams{
DoFunc: func(ctx context.Context) error {
groups.UpdateCNPInformation()
return nil
},
RunInterval: 5 * time.Minute,
})
return nil
}