-
Notifications
You must be signed in to change notification settings - Fork 780
/
Copy pathconstraint_controller.go
184 lines (160 loc) Β· 5.63 KB
/
constraint_controller.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
/*
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 constraint
import (
"context"
"fmt"
"github.com/go-logr/logr"
opa "github.com/open-policy-agent/frameworks/constraint/pkg/client"
"github.com/open-policy-agent/gatekeeper/pkg/util"
"k8s.io/apimachinery/pkg/api/errors"
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/runtime/schema"
"sigs.k8s.io/controller-runtime/pkg/client"
"sigs.k8s.io/controller-runtime/pkg/controller"
"sigs.k8s.io/controller-runtime/pkg/handler"
"sigs.k8s.io/controller-runtime/pkg/manager"
"sigs.k8s.io/controller-runtime/pkg/reconcile"
logf "sigs.k8s.io/controller-runtime/pkg/runtime/log"
"sigs.k8s.io/controller-runtime/pkg/source"
)
var log = logf.Log.WithName("controller").WithValues("metaKind", "Constraint")
const (
finalizerName = "finalizers.gatekeeper.sh/constraint"
project = "gatekeeper.sh"
)
type Adder struct {
Opa *opa.Client
}
// Add creates a new Constraint Controller and adds it to the Manager with default RBAC. The Manager will set fields on the Controller
// and Start it when the Manager is Started.
func (a *Adder) Add(mgr manager.Manager, gvk schema.GroupVersionKind) error {
r := newReconciler(mgr, gvk, a.Opa)
return add(mgr, r, gvk)
}
// newReconciler returns a new reconcile.Reconciler
func newReconciler(mgr manager.Manager, gvk schema.GroupVersionKind, opa *opa.Client) reconcile.Reconciler {
return &ReconcileConstraint{
Client: mgr.GetClient(),
scheme: mgr.GetScheme(),
opa: opa,
log: log.WithValues("kind", gvk.Kind, "apiVersion", gvk.GroupVersion().String()),
gvk: gvk,
}
}
// add adds a new Controller to mgr with r as the reconcile.Reconciler
func add(mgr manager.Manager, r reconcile.Reconciler, gvk schema.GroupVersionKind) error {
// Create a new controller
c, err := controller.New(fmt.Sprintf("%s-constraint-controller", gvk.String()), mgr, controller.Options{Reconciler: r})
if err != nil {
return err
}
// Watch for changes to the provided constraint
instance := unstructured.Unstructured{}
instance.SetGroupVersionKind(gvk)
err = c.Watch(&source.Kind{Type: &instance}, &handler.EnqueueRequestForObject{})
if err != nil {
return err
}
return nil
}
var _ reconcile.Reconciler = &ReconcileConstraint{}
// ReconcileSync reconciles an arbitrary constraint object described by Kind
type ReconcileConstraint struct {
client.Client
scheme *runtime.Scheme
opa *opa.Client
gvk schema.GroupVersionKind
log logr.Logger
}
// Reconcile reads that state of the cluster for a constraint object and makes changes based on the state read
// and what is in the constraint.Spec
// +kubebuilder:rbac:groups=constraints.gatekeeper.sh,resources=*,verbs=get;list;watch;create;update;patch;delete
func (r *ReconcileConstraint) Reconcile(request reconcile.Request) (reconcile.Result, error) {
instance := &unstructured.Unstructured{}
instance.SetGroupVersionKind(r.gvk)
err := r.Get(context.TODO(), request.NamespacedName, instance)
if err != nil {
if errors.IsNotFound(err) {
// Object not found, return. Created objects are automatically garbage collected.
// For additional cleanup logic use finalizers.
return reconcile.Result{}, nil
}
// Error reading the object - requeue the request.
return reconcile.Result{}, err
}
if instance.GetDeletionTimestamp().IsZero() {
if !HasFinalizer(instance) {
instance.SetFinalizers(append(instance.GetFinalizers(), finalizerName))
if err := r.Update(context.Background(), instance); err != nil {
return reconcile.Result{Requeue: true}, nil
}
}
log.Info("instance will be added", "instance", instance)
status, err := util.GetHAStatus(instance)
if err != nil {
return reconcile.Result{}, err
}
delete(status, "errors")
util.SetHAStatus(instance, status)
if _, err := r.opa.AddConstraint(context.Background(), instance); err != nil {
return reconcile.Result{}, err
}
status, err = util.GetHAStatus(instance)
if err != nil {
return reconcile.Result{}, err
}
status["enforced"] = true
util.SetHAStatus(instance, status)
if err := r.Update(context.Background(), instance); err != nil {
return reconcile.Result{Requeue: true}, nil
}
} else {
// Handle deletion
if HasFinalizer(instance) {
if _, err := r.opa.RemoveConstraint(context.Background(), instance); err != nil {
if _, ok := err.(*opa.UnrecognizedConstraintError); !ok {
return reconcile.Result{}, err
}
}
RemoveFinalizer(instance)
if err := r.Update(context.Background(), instance); err != nil {
return reconcile.Result{Requeue: true}, nil
}
}
}
return reconcile.Result{}, nil
}
func RemoveFinalizer(instance *unstructured.Unstructured) {
instance.SetFinalizers(removeString(finalizerName, instance.GetFinalizers()))
}
func HasFinalizer(instance *unstructured.Unstructured) bool {
return containsString(finalizerName, instance.GetFinalizers())
}
func containsString(s string, items []string) bool {
for _, item := range items {
if item == s {
return true
}
}
return false
}
func removeString(s string, items []string) []string {
var rval []string
for _, item := range items {
if item != s {
rval = append(rval, item)
}
}
return rval
}