You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 14, 2020. It is now read-only.
| securityContext.allowPrivilegeEscalation | bool |`false`| Ensure that users privileges cannot be escalated |
42
+
| securityContext.capabilities.drop[0]| string |`"all"`| This drops all linux privileges from the operator container. They are not required |
43
+
| securityContext.privileged | bool |`false`| Ensures that the operator container is not run in privileged mode |
44
+
| securityContext.readOnlyRootFilesystem | bool |`true`| Prevents write access to the containers file system |
45
+
| securityContext.runAsNonRoot | bool |`true`| Enforces that the Operator image is run as a non root user |
41
46
| telemetryEnabled | bool |`true`| The Operator sends anonymous telemetry data, to give the team an overview how much the secureCodeBox is used. Find out more at https://www.securecodebox.io/telemetry|
Copy file name to clipboardExpand all lines: operator/values.yaml
+15-1Lines changed: 15 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,20 @@ image:
14
14
# image.pullPolicy -- Image pull policy
15
15
pullPolicy: Always
16
16
17
+
securityContext:
18
+
# securityContext.runAsNonRoot -- Enforces that the Operator image is run as a non root user
19
+
runAsNonRoot: true
20
+
# securityContext.readOnlyRootFilesystem -- Prevents write access to the containers file system
21
+
readOnlyRootFilesystem: true
22
+
# securityContext.allowPrivilegeEscalation -- Ensure that users privileges cannot be escalated
23
+
allowPrivilegeEscalation: false
24
+
# securityContext.privileged -- Ensures that the operator container is not run in privileged mode
25
+
privileged: false
26
+
capabilities:
27
+
drop:
28
+
# securityContext.capabilities.drop[0] -- This drops all linux privileges from the operator container. They are not required
29
+
- all
30
+
17
31
lurcher:
18
32
image:
19
33
# lurcher.image.repository -- The operator image repository
@@ -22,7 +36,7 @@ lurcher:
22
36
# @default -- defaults to the charts version
23
37
tag: null
24
38
# lurcher.image.pullPolicy -- Image pull policy
25
-
pullPolicy: IfNotPresent
39
+
pullPolicy: Always
26
40
27
41
minio:
28
42
# minio.enabled Enable this to use minio as storage backend instead of a cloud bucket provider like AWS S3, Google Cloud Storage, DigitalOcean Spaces etc.
0 commit comments