Browse Source

add capabilities

Stavros kois 2 years ago
parent
commit
c5b8877837
1 changed files with 10 additions and 0 deletions
  1. 10 0
      test/wg-easy/1.0.0/templates/deployment.yaml

+ 10 - 0
test/wg-easy/1.0.0/templates/deployment.yaml

@@ -31,6 +31,16 @@ spec:
         - name: {{ .Chart.Name }}
           {{ include "common.resources.limitation" . | nindent 10 }}
           {{ include "common.containers.imageConfig" .Values.image | nindent 10 }}
+          securityContext:
+            capabilities:
+              add:
+                - NET_ADMIN
+                - SYS_MODULE
+            {{/* https://github.com/WeeJeWel/wg-easy/pull/394 */}}
+            runAsUser: 0
+            runAsGroup: 0
+            readOnlyRootFilesystem: false
+            runAsNonRoot: false
           volumeMounts: {{ include "common.storage.configureAppVolumeMountsInContainer" .Values | nindent 12 }}
           {{ range $index, $hostPathConfiguration := .Values.extraAppVolumeMounts }}
             - name: extrappvolume-{{ $index }}