-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpsp.go
136 lines (121 loc) · 3.81 KB
/
psp.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
/*
Copyright 2020 VMware, Inc.
All Rights Reserved.
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.
*/
//nolint:unparam
package controllers
import (
"context"
"reflect"
logr "github.com/go-logr/logr"
akov1alpha1 "github.com/vmware/load-balancer-and-ingress-services-for-kubernetes/ako-operator/api/v1alpha1"
policyv1beta1 "k8s.io/api/policy/v1beta1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/types"
)
func createOrUpdatePodSecurityPolicy(ctx context.Context, ako akov1alpha1.AKOConfig, log logr.Logger, r *AKOConfigReconciler) error {
var oldPSP policyv1beta1.PodSecurityPolicy //nolint:errcheck
if err := r.Get(ctx, getPSPName(), &oldPSP); err != nil {
log.V(0).Info("no pre-existing podsecuritypolicy with name", "name", PSPName)
} else {
if oldPSP.GetName() != "" {
log.V(0).Info("pre-existing podsecuritypolicy, will be updated", "name", oldPSP.GetName())
}
}
if !ako.Spec.Rbac.PSPEnable {
// PSP not required anymore, delete any existing psp
objList := getObjectList()
pspObj, ok := objList[getPSPName()]
if !ok {
return nil
}
r.deleteIfExists(ctx, getPSPName(), pspObj)
return nil
}
psp := BuildPodSecurityPolicy(ako, r, log)
if oldPSP.GetName() != "" {
if reflect.DeepEqual(oldPSP.Spec, psp.Spec) {
log.V(0).Info("no updates required for podsecuritypolicy")
// add this object in the global list
objList := getObjectList()
objList[types.NamespacedName{
Name: oldPSP.GetName(),
}] = &oldPSP
return nil
}
err := r.Update(ctx, &psp)
if err != nil {
log.Error(err, "unable to update podsecuritypolicy", "namespace", psp.GetNamespace(),
"name", psp.GetName())
return err
}
} else {
err := r.Create(ctx, &psp)
if err != nil {
log.Error(err, "unable to create podsecuritypolicy", "namespace", psp.GetNamespace(),
"name", psp.GetName())
return err
}
}
var newPSP policyv1beta1.PodSecurityPolicy
err := r.Get(ctx, getPSPName(), &newPSP)
if err != nil {
log.V(0).Info("error getting a clusterrole with name", "name", getCRName().Name, "err", err)
}
// update this object in the global list
objList := getObjectList()
objList[types.NamespacedName{
Name: newPSP.GetName(),
}] = &newPSP
return nil
}
func BuildPodSecurityPolicy(ako akov1alpha1.AKOConfig, r *AKOConfigReconciler, log logr.Logger) policyv1beta1.PodSecurityPolicy {
priviledgedEscalation := false
// conditionally add the api version
psp := policyv1beta1.PodSecurityPolicy{
ObjectMeta: metav1.ObjectMeta{
Name: PSPName,
},
Spec: policyv1beta1.PodSecurityPolicySpec{
Privileged: false,
AllowPrivilegeEscalation: &priviledgedEscalation,
FSGroup: policyv1beta1.FSGroupStrategyOptions{
Rule: "MustRunAs",
Ranges: []policyv1beta1.IDRange{
{
Min: 1,
Max: 65535,
},
},
},
HostNetwork: false,
HostIPC: false,
HostPID: false,
RunAsUser: policyv1beta1.RunAsUserStrategyOptions{
Rule: "RunAsAny",
},
SELinux: policyv1beta1.SELinuxStrategyOptions{Rule: "RunAsAny"},
SupplementalGroups: policyv1beta1.SupplementalGroupsStrategyOptions{
Rule: "MustRunAs",
Ranges: []policyv1beta1.IDRange{
{
Min: 1,
Max: 65535,
},
},
},
ReadOnlyRootFilesystem: false,
Volumes: []policyv1beta1.FSType{"configMap", "emptyDir", "projected", "secret", "downwardAPI"},
},
}
return psp
}