We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed594b7 commit 3e6bc69Copy full SHA for 3e6bc69
test/bats/tests/aws/BasicTestMount.yaml
@@ -4,13 +4,29 @@ metadata:
4
name: basic-test-mount
5
spec:
6
serviceAccountName: basic-test-mount-sa
7
+ securityContext:
8
+ runAsNonRoot: true
9
+ runAsUser: 1000
10
+ runAsGroup: 3000
11
+ fsGroup: 2000
12
+ seccompProfile:
13
+ type: RuntimeDefault
14
containers:
15
- image: registry.k8s.io/e2e-test-images/busybox:1.29-4
16
name: busybox
17
imagePullPolicy: IfNotPresent
18
command:
19
- "/bin/sleep"
20
- "10000"
21
22
+ allowPrivilegeEscalation: false
23
+ capabilities:
24
+ drop:
25
+ - ALL
26
27
28
29
30
volumeMounts:
31
- name: secrets-store-inline
32
mountPath: "/mnt/secrets-store"
0 commit comments