Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Don't deploy PSPs when PodSecurityPolicy plugin is disabled #523

Merged
merged 1 commit into from
Aug 18, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{{- if not .Values.pspDisabled }}
apiVersion: policy/v1beta1
kind: PodSecurityPolicy
metadata:
Expand All @@ -22,3 +23,4 @@ spec:
fsGroup:
rule: RunAsAny
readOnlyRootFilesystem: false
{{- end }}
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@ automountServiceAccountToken: false
kind: ClusterRole
apiVersion: rbac.authorization.k8s.io/v1
metadata:
{{- if not .Values.pspDisabled }}
name: {{ include "csi-disk-plugin.extensionsGroup" . }}:psp:kube-system:csi-disk-plugin-alicloud
{{- else }}
name: {{ include "csi-disk-plugin.extensionsGroup" . }}:kube-system:csi-disk-plugin-alicloud
{{- end }}
rules:
- apiGroups: [""]
resources: ["nodes"]
Expand All @@ -22,6 +26,7 @@ rules:
- apiGroups: ["storage.k8s.io"]
resources: ["volumeattachments"]
verbs: ["get", "list", "watch", "update"]
{{- if not .Values.pspDisabled }}
- apiGroups:
- policy
- extensions
Expand All @@ -31,16 +36,25 @@ rules:
- podsecuritypolicies
verbs:
- use
{{- end }}
---
kind: ClusterRoleBinding
apiVersion: rbac.authorization.k8s.io/v1
metadata:
{{- if not .Values.pspDisabled }}
name: {{ include "csi-disk-plugin.extensionsGroup" . }}:psp:csi-disk-plugin-alicloud
{{- else }}
name: {{ include "csi-disk-plugin.extensionsGroup" . }}:csi-disk-plugin-alicloud
{{- end }}
subjects:
- kind: ServiceAccount
name: csi-disk-plugin-alicloud
namespace: kube-system
roleRef:
kind: ClusterRole
{{- if not .Values.pspDisabled }}
name: {{ include "csi-disk-plugin.extensionsGroup" . }}:psp:kube-system:csi-disk-plugin-alicloud
{{- else }}
name: {{ include "csi-disk-plugin.extensionsGroup" . }}:kube-system:csi-disk-plugin-alicloud
{{- end }}
apiGroup: rbac.authorization.k8s.io
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,5 @@ resources:
memory: 32Mi
limits:
memory: 300Mi

pspDisabled: false
2 changes: 1 addition & 1 deletion example/10-fake-shoot-controlplane.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ spec:
- command:
- /hyperkube
- apiserver
- --enable-admission-plugins=Priority,NamespaceLifecycle,LimitRanger,PodSecurityPolicy,ServiceAccount,NodeRestriction,DefaultStorageClass,Initializers,DefaultTolerationSeconds,ResourceQuota,StorageObjectInUseProtection,MutatingAdmissionWebhook,ValidatingAdmissionWebhook
- --enable-admission-plugins=Priority,NamespaceLifecycle,LimitRanger,ServiceAccount,NodeRestriction,DefaultStorageClass,Initializers,DefaultTolerationSeconds,ResourceQuota,StorageObjectInUseProtection,MutatingAdmissionWebhook,ValidatingAdmissionWebhook
- --disable-admission-plugins=PersistentVolumeLabel
- --allow-privileged=true
- --anonymous-auth=false
Expand Down
1 change: 1 addition & 0 deletions pkg/controller/controlplane/valuesprovider.go
Original file line number Diff line number Diff line change
Expand Up @@ -474,6 +474,7 @@ func (vp *valuesProvider) getControlPlaneShootChartValues(
"url": "https://" + alicloud.CSISnapshotValidation + "." + cp.Namespace + "/volumesnapshot",
"caBundle": string(caSecret.Data[secretutils.DataKeyCertificateBundle]),
},
"pspDisabled": gardencorev1beta1helper.IsPSPDisabled(cluster.Shoot),
},
}

Expand Down
107 changes: 86 additions & 21 deletions pkg/controller/controlplane/valuesprovider_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import (
"github.com/gardener/gardener-extension-provider-alicloud/pkg/apis/config"

extensionscontroller "github.com/gardener/gardener/extensions/pkg/controller"
"github.com/gardener/gardener/extensions/pkg/controller/controlplane/genericactuator"
gardencorev1beta1 "github.com/gardener/gardener/pkg/apis/core/v1beta1"
v1beta1constants "github.com/gardener/gardener/pkg/apis/core/v1beta1/constants"
extensionsv1alpha1 "github.com/gardener/gardener/pkg/apis/extensions/v1alpha1"
Expand Down Expand Up @@ -56,6 +57,9 @@ var _ = Describe("ValuesProvider", func() {
fakeClient client.Client
fakeSecretsManager secretsmanager.Interface

vp genericactuator.ValuesProvider
c *mockclient.MockClient

cp = &extensionsv1alpha1.ControlPlane{
ObjectMeta: metav1.ObjectMeta{
Name: "control-plane",
Expand Down Expand Up @@ -194,6 +198,7 @@ var _ = Describe("ValuesProvider", func() {
"url": "https://" + alicloud.CSISnapshotValidation + "." + cp.Namespace + "/volumesnapshot",
"caBundle": "",
},
"pspDisabled": false,
},
}

Expand All @@ -204,6 +209,15 @@ var _ = Describe("ValuesProvider", func() {
ctrl = gomock.NewController(GinkgoT())
fakeClient = fakeclient.NewClientBuilder().Build()
fakeSecretsManager = fakesecretsmanager.New(fakeClient, namespace)

// Create mock client
c = mockclient.NewMockClient(ctrl)
// Create valuesProvider
vp = NewValuesProvider(csi)
err := vp.(inject.Scheme).InjectScheme(scheme)
Expect(err).NotTo(HaveOccurred())
err = vp.(inject.Client).InjectClient(c)
Expect(err).NotTo(HaveOccurred())
})

AfterEach(func() {
Expand All @@ -212,22 +226,14 @@ var _ = Describe("ValuesProvider", func() {

Describe("#GetControlPlaneChartValues", func() {
BeforeEach(func() {
c.EXPECT().Get(context.TODO(), cpSecretKey, &corev1.Secret{}).DoAndReturn(clientGet(cpSecret))

By("creating secrets managed outside of this package for whose secretsmanager.Get() will be called")
Expect(fakeClient.Create(context.TODO(), &corev1.Secret{ObjectMeta: metav1.ObjectMeta{Name: "ca-provider-alicloud-controlplane", Namespace: namespace}})).To(Succeed())
Expect(fakeClient.Create(context.TODO(), &corev1.Secret{ObjectMeta: metav1.ObjectMeta{Name: "csi-snapshot-validation-server", Namespace: namespace}})).To(Succeed())
})

It("should return correct control plane chart values", func() {
// Create mock client
client := mockclient.NewMockClient(ctrl)
client.EXPECT().Get(context.TODO(), cpSecretKey, &corev1.Secret{}).DoAndReturn(clientGet(cpSecret))
// Create valuesProvider
vp := NewValuesProvider(csi)
err := vp.(inject.Scheme).InjectScheme(scheme)
Expect(err).NotTo(HaveOccurred())
err = vp.(inject.Client).InjectClient(client)
Expect(err).NotTo(HaveOccurred())

// Call GetControlPlaneChartValues method and check the result
values, err := vp.GetControlPlaneChartValues(context.TODO(), cp, cluster, fakeSecretsManager, checksums, false)
Expect(err).NotTo(HaveOccurred())
Expand All @@ -237,28 +243,87 @@ var _ = Describe("ValuesProvider", func() {

Describe("#GetControlPlaneShootChartValues", func() {
BeforeEach(func() {
c.EXPECT().Get(context.TODO(), cpSecretKey, &corev1.Secret{}).DoAndReturn(clientGet(cpSecret))

By("creating secrets managed outside of this package for whose secretsmanager.Get() will be called")
Expect(fakeClient.Create(context.TODO(), &corev1.Secret{ObjectMeta: metav1.ObjectMeta{Name: "ca-provider-alicloud-controlplane", Namespace: namespace}})).To(Succeed())
Expect(fakeClient.Create(context.TODO(), &corev1.Secret{ObjectMeta: metav1.ObjectMeta{Name: "csi-snapshot-validation-server", Namespace: namespace}})).To(Succeed())
})

It("should return correct control plane shoot chart values", func() {
// Create mock client
client := mockclient.NewMockClient(ctrl)
client.EXPECT().Get(context.TODO(), cpSecretKey, &corev1.Secret{}).DoAndReturn(clientGet(cpSecret))

// Create valuesProvider
vp := NewValuesProvider(csi)
err := vp.(inject.Scheme).InjectScheme(scheme)
Expect(err).NotTo(HaveOccurred())
err = vp.(inject.Client).InjectClient(client)
Expect(err).NotTo(HaveOccurred())

// Call GetControlPlaneShootChartValues method and check the result
values, err := vp.GetControlPlaneShootChartValues(context.TODO(), cp, cluster, fakeSecretsManager, checksums)
Expect(err).NotTo(HaveOccurred())
Expect(values).To(Equal(controlPlaneShootChartValues))
})

Context("podSecurityPolicy", func() {
It("should return correct shoot control plane chart when PodSecurityPolicy admission plugin is not disabled in the shoot", func() {
cluster.Shoot.Spec.Kubernetes.KubeAPIServer = &gardencorev1beta1.KubeAPIServerConfig{
AdmissionPlugins: []gardencorev1beta1.AdmissionPlugin{
{
Name: "PodSecurityPolicy",
},
},
}

// Call GetControlPlaneShootChartValues method and check the result
values, err := vp.GetControlPlaneShootChartValues(context.TODO(), cp, cluster, fakeSecretsManager, checksums)
Expect(err).NotTo(HaveOccurred())

controlPlaneShootChartValues := map[string]interface{}{
"csi-alicloud": map[string]interface{}{
"credential": map[string]interface{}{
"accessKeyID": "Zm9v",
"accessKeySecret": "YmFy",
},
"kubernetesVersion": "1.20.0",
"enableADController": true,
"vpaEnabled": true,
"webhookConfig": map[string]interface{}{
"url": "https://" + alicloud.CSISnapshotValidation + "." + cp.Namespace + "/volumesnapshot",
"caBundle": "",
},
"pspDisabled": false,
},
}

Expect(values).To(Equal(controlPlaneShootChartValues))
})

It("should return correct shoot control plane chart when PodSecurityPolicy admission plugin is disabled in the shoot", func() {
cluster.Shoot.Spec.Kubernetes.KubeAPIServer = &gardencorev1beta1.KubeAPIServerConfig{
AdmissionPlugins: []gardencorev1beta1.AdmissionPlugin{
{
Name: "PodSecurityPolicy",
Disabled: pointer.Bool(true),
},
},
}

// Call GetControlPlaneShootChartValues method and check the result
values, err := vp.GetControlPlaneShootChartValues(context.TODO(), cp, cluster, fakeSecretsManager, checksums)
Expect(err).NotTo(HaveOccurred())

controlPlaneShootChartValues := map[string]interface{}{
"csi-alicloud": map[string]interface{}{
"credential": map[string]interface{}{
"accessKeyID": "Zm9v",
"accessKeySecret": "YmFy",
},
"kubernetesVersion": "1.20.0",
"enableADController": true,
"vpaEnabled": true,
"webhookConfig": map[string]interface{}{
"url": "https://" + alicloud.CSISnapshotValidation + "." + cp.Namespace + "/volumesnapshot",
"caBundle": "",
},
"pspDisabled": true,
},
}
Expect(values).To(Equal(controlPlaneShootChartValues))
})
})
})

Describe("#GetControlPlaneShootCRDsChartValues", func() {
Expand Down