Skip to content
Snippets Groups Projects
Verified Commit 79839237 authored by Sheogorath's avatar Sheogorath :european_castle:
Browse files

fix(dashboard): fix missing security context topics

parent 1f6d8b45
No related branches found
No related tags found
No related merge requests found
...@@ -262,6 +262,7 @@ spec: ...@@ -262,6 +262,7 @@ spec:
app.kubernetes.io/version: "v1.0.0" app.kubernetes.io/version: "v1.0.0"
spec: spec:
securityContext: securityContext:
runAsNonRoot: true
seccompProfile: seccompProfile:
type: RuntimeDefault type: RuntimeDefault
containers: containers:
...@@ -284,6 +285,9 @@ spec: ...@@ -284,6 +285,9 @@ spec:
readOnlyRootFilesystem: true readOnlyRootFilesystem: true
runAsUser: 1001 runAsUser: 1001
runAsGroup: 2001 runAsGroup: 2001
capabilities:
drop:
- ALL
volumes: volumes:
- name: tmp-volume - name: tmp-volume
emptyDir: {} emptyDir: {}
...@@ -316,6 +320,7 @@ spec: ...@@ -316,6 +320,7 @@ spec:
app.kubernetes.io/version: "v1.0.0" app.kubernetes.io/version: "v1.0.0"
spec: spec:
securityContext: securityContext:
runAsNonRoot: true
seccompProfile: seccompProfile:
type: RuntimeDefault type: RuntimeDefault
containers: containers:
...@@ -335,6 +340,9 @@ spec: ...@@ -335,6 +340,9 @@ spec:
readOnlyRootFilesystem: true readOnlyRootFilesystem: true
runAsUser: 1001 runAsUser: 1001
runAsGroup: 2001 runAsGroup: 2001
capabilities:
drop:
- ALL
volumes: volumes:
- name: tmp-volume - name: tmp-volume
emptyDir: {} emptyDir: {}
...@@ -367,6 +375,7 @@ spec: ...@@ -367,6 +375,7 @@ spec:
app.kubernetes.io/version: "v1.0.9" app.kubernetes.io/version: "v1.0.9"
spec: spec:
securityContext: securityContext:
runAsNonRoot: true
seccompProfile: seccompProfile:
type: RuntimeDefault type: RuntimeDefault
containers: containers:
...@@ -391,6 +400,9 @@ spec: ...@@ -391,6 +400,9 @@ spec:
readOnlyRootFilesystem: true readOnlyRootFilesystem: true
runAsUser: 1001 runAsUser: 1001
runAsGroup: 2001 runAsGroup: 2001
capabilities:
drop:
- ALL
volumes: volumes:
- name: tmp-volume - name: tmp-volume
emptyDir: {} emptyDir: {}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment