diff --git a/nextcloud-aio-helm-chart/Chart.yaml b/nextcloud-aio-helm-chart/Chart.yaml index 81990a813f88..96ea008d19d8 100755 --- a/nextcloud-aio-helm-chart/Chart.yaml +++ b/nextcloud-aio-helm-chart/Chart.yaml @@ -1,6 +1,6 @@ name: nextcloud-aio-helm-chart description: A generated Helm Chart for Nextcloud AIO from Skippbox Kompose -version: 10.0.0-beta +version: 10.0.0 apiVersion: v2 keywords: - latest diff --git a/nextcloud-aio-helm-chart/templates/nextcloud-aio-apache-deployment.yaml b/nextcloud-aio-helm-chart/templates/nextcloud-aio-apache-deployment.yaml index ab674f0e3729..790e810d643d 100755 --- a/nextcloud-aio-helm-chart/templates/nextcloud-aio-apache-deployment.yaml +++ b/nextcloud-aio-helm-chart/templates/nextcloud-aio-apache-deployment.yaml @@ -31,7 +31,7 @@ spec: runAsUser: 33 runAsGroup: 33 runAsNonRoot: true - {{- if eq .Values.RPSS_ENABLED "yes" }} + {{- if eq .Values.RPSS_ENABLED "yes" | default "no" }} seccompProfile: type: RuntimeDefault {{- end }} @@ -74,7 +74,7 @@ spec: # The items below only work in container context allowPrivilegeEscalation: false capabilities: - {{- if eq .Values.RPSS_ENABLED "yes" }} + {{- if eq .Values.RPSS_ENABLED "yes" | default "no" }} drop: ["ALL"] {{- else }} drop: ["NET_RAW"] diff --git a/nextcloud-aio-helm-chart/templates/nextcloud-aio-clamav-deployment.yaml b/nextcloud-aio-helm-chart/templates/nextcloud-aio-clamav-deployment.yaml index 38f0a21bce50..77d60f93f1f3 100755 --- a/nextcloud-aio-helm-chart/templates/nextcloud-aio-clamav-deployment.yaml +++ b/nextcloud-aio-helm-chart/templates/nextcloud-aio-clamav-deployment.yaml @@ -32,7 +32,7 @@ spec: runAsUser: 100 runAsGroup: 100 runAsNonRoot: true - {{- if eq .Values.RPSS_ENABLED "yes" }} + {{- if eq .Values.RPSS_ENABLED "yes" | default "no" }} seccompProfile: type: RuntimeDefault {{- end }} @@ -50,7 +50,7 @@ spec: # The items below only work in container context allowPrivilegeEscalation: false capabilities: - {{- if eq .Values.RPSS_ENABLED "yes" }} + {{- if eq .Values.RPSS_ENABLED "yes" | default "no" }} drop: ["ALL"] {{- else }} drop: ["NET_RAW"] @@ -73,7 +73,7 @@ spec: # The items below only work in container context allowPrivilegeEscalation: false capabilities: - {{- if eq .Values.RPSS_ENABLED "yes" }} + {{- if eq .Values.RPSS_ENABLED "yes" | default "no" }} drop: ["ALL"] {{- else }} drop: ["NET_RAW"] diff --git a/nextcloud-aio-helm-chart/templates/nextcloud-aio-database-deployment.yaml b/nextcloud-aio-helm-chart/templates/nextcloud-aio-database-deployment.yaml index 5f6b32369bee..332c41fba407 100755 --- a/nextcloud-aio-helm-chart/templates/nextcloud-aio-database-deployment.yaml +++ b/nextcloud-aio-helm-chart/templates/nextcloud-aio-database-deployment.yaml @@ -31,7 +31,7 @@ spec: runAsUser: 999 runAsGroup: 999 runAsNonRoot: true - {{- if eq .Values.RPSS_ENABLED "yes" }} + {{- if eq .Values.RPSS_ENABLED "yes" | default "no" }} seccompProfile: type: RuntimeDefault {{- end }} @@ -49,7 +49,7 @@ spec: # The items below only work in container context allowPrivilegeEscalation: false capabilities: - {{- if eq .Values.RPSS_ENABLED "yes" }} + {{- if eq .Values.RPSS_ENABLED "yes" | default "no" }} drop: ["ALL"] {{- else }} drop: ["NET_RAW"] @@ -76,7 +76,7 @@ spec: # The items below only work in container context allowPrivilegeEscalation: false capabilities: - {{- if eq .Values.RPSS_ENABLED "yes" }} + {{- if eq .Values.RPSS_ENABLED "yes" | default "no" }} drop: ["ALL"] {{- else }} drop: ["NET_RAW"] diff --git a/nextcloud-aio-helm-chart/templates/nextcloud-aio-imaginary-deployment.yaml b/nextcloud-aio-helm-chart/templates/nextcloud-aio-imaginary-deployment.yaml index a2ff00595bc6..228793347179 100755 --- a/nextcloud-aio-helm-chart/templates/nextcloud-aio-imaginary-deployment.yaml +++ b/nextcloud-aio-helm-chart/templates/nextcloud-aio-imaginary-deployment.yaml @@ -30,7 +30,7 @@ spec: runAsUser: 65534 runAsGroup: 65534 runAsNonRoot: true - {{- if eq .Values.RPSS_ENABLED "yes" }} + {{- if eq .Values.RPSS_ENABLED "yes" | default "no" }} seccompProfile: type: RuntimeDefault {{- end }} @@ -49,7 +49,7 @@ spec: # The items below only work in container context allowPrivilegeEscalation: false capabilities: - {{- if eq .Values.RPSS_ENABLED "yes" }} + {{- if eq .Values.RPSS_ENABLED "yes" | default "no" }} drop: ["ALL"] {{- else }} drop: ["NET_RAW"] diff --git a/nextcloud-aio-helm-chart/templates/nextcloud-aio-nextcloud-deployment.yaml b/nextcloud-aio-helm-chart/templates/nextcloud-aio-nextcloud-deployment.yaml index ae048f1a99be..0a2fe7400992 100755 --- a/nextcloud-aio-helm-chart/templates/nextcloud-aio-nextcloud-deployment.yaml +++ b/nextcloud-aio-helm-chart/templates/nextcloud-aio-nextcloud-deployment.yaml @@ -23,7 +23,7 @@ spec: labels: io.kompose.service: nextcloud-aio-nextcloud spec: - {{- if eq .Values.RPSS_ENABLED "yes" }} # AIO-config - do not change this comment! + {{- if eq .Values.RPSS_ENABLED "yes" | default "no" }} # AIO-config - do not change this comment! securityContext: # The items below only work in pod context fsGroup: 33 @@ -32,7 +32,7 @@ spec: runAsUser: 33 runAsGroup: 33 runAsNonRoot: true - {{- if eq .Values.RPSS_ENABLED "yes" }} + {{- if eq .Values.RPSS_ENABLED "yes" | default "no" }} seccompProfile: type: RuntimeDefault {{- end }} @@ -178,13 +178,13 @@ spec: value: "{{ .Values.WHITEBOARD_ENABLED }}" - name: WHITEBOARD_SECRET value: "{{ .Values.WHITEBOARD_SECRET }}" - image: nextcloud/aio-nextcloud:20241125_09175 - {{- if eq .Values.RPSS_ENABLED "yes" }} # AIO-config - do not change this comment! + image: nextcloud/aio-nextcloud:20241125_091756 + {{- if eq .Values.RPSS_ENABLED "yes" | default "no" }} # AIO-config - do not change this comment! securityContext: # The items below only work in container context allowPrivilegeEscalation: false capabilities: - {{- if eq .Values.RPSS_ENABLED "yes" }} + {{- if eq .Values.RPSS_ENABLED "yes" | default "no" }} drop: ["ALL"] {{- else }} drop: ["NET_RAW"] diff --git a/nextcloud-aio-helm-chart/templates/nextcloud-aio-notify-push-deployment.yaml b/nextcloud-aio-helm-chart/templates/nextcloud-aio-notify-push-deployment.yaml index f9256d2eb205..6e93cb515e47 100755 --- a/nextcloud-aio-helm-chart/templates/nextcloud-aio-notify-push-deployment.yaml +++ b/nextcloud-aio-helm-chart/templates/nextcloud-aio-notify-push-deployment.yaml @@ -31,7 +31,7 @@ spec: runAsUser: 33 runAsGroup: 33 runAsNonRoot: true - {{- if eq .Values.RPSS_ENABLED "yes" }} + {{- if eq .Values.RPSS_ENABLED "yes" | default "no" }} seccompProfile: type: RuntimeDefault {{- end }} @@ -64,7 +64,7 @@ spec: # The items below only work in container context allowPrivilegeEscalation: false capabilities: - {{- if eq .Values.RPSS_ENABLED "yes" }} + {{- if eq .Values.RPSS_ENABLED "yes" | default "no" }} drop: ["ALL"] {{- else }} drop: ["NET_RAW"] diff --git a/nextcloud-aio-helm-chart/templates/nextcloud-aio-redis-deployment.yaml b/nextcloud-aio-helm-chart/templates/nextcloud-aio-redis-deployment.yaml index 375e52bd6fe8..f81c13ded694 100755 --- a/nextcloud-aio-helm-chart/templates/nextcloud-aio-redis-deployment.yaml +++ b/nextcloud-aio-helm-chart/templates/nextcloud-aio-redis-deployment.yaml @@ -31,7 +31,7 @@ spec: runAsUser: 999 runAsGroup: 999 runAsNonRoot: true - {{- if eq .Values.RPSS_ENABLED "yes" }} + {{- if eq .Values.RPSS_ENABLED "yes" | default "no" }} seccompProfile: type: RuntimeDefault {{- end }} @@ -50,7 +50,7 @@ spec: # The items below only work in container context allowPrivilegeEscalation: false capabilities: - {{- if eq .Values.RPSS_ENABLED "yes" }} + {{- if eq .Values.RPSS_ENABLED "yes" | default "no" }} drop: ["ALL"] {{- else }} drop: ["NET_RAW"] diff --git a/nextcloud-aio-helm-chart/templates/nextcloud-aio-talk-deployment.yaml b/nextcloud-aio-helm-chart/templates/nextcloud-aio-talk-deployment.yaml index 31ecd663f15d..19ecd60ee395 100755 --- a/nextcloud-aio-helm-chart/templates/nextcloud-aio-talk-deployment.yaml +++ b/nextcloud-aio-helm-chart/templates/nextcloud-aio-talk-deployment.yaml @@ -30,7 +30,7 @@ spec: runAsUser: 1000 runAsGroup: 1000 runAsNonRoot: true - {{- if eq .Values.RPSS_ENABLED "yes" }} + {{- if eq .Values.RPSS_ENABLED "yes" | default "no" }} seccompProfile: type: RuntimeDefault {{- end }} @@ -67,7 +67,7 @@ spec: # The items below only work in container context allowPrivilegeEscalation: false capabilities: - {{- if eq .Values.RPSS_ENABLED "yes" }} + {{- if eq .Values.RPSS_ENABLED "yes" | default "no" }} drop: ["ALL"] {{- else }} drop: ["NET_RAW"] diff --git a/nextcloud-aio-helm-chart/templates/nextcloud-aio-talk-recording-deployment.yaml b/nextcloud-aio-helm-chart/templates/nextcloud-aio-talk-recording-deployment.yaml index 5379a0697954..41b209c986c4 100755 --- a/nextcloud-aio-helm-chart/templates/nextcloud-aio-talk-recording-deployment.yaml +++ b/nextcloud-aio-helm-chart/templates/nextcloud-aio-talk-recording-deployment.yaml @@ -32,7 +32,7 @@ spec: runAsUser: 122 runAsGroup: 122 runAsNonRoot: true - {{- if eq .Values.RPSS_ENABLED "yes" }} + {{- if eq .Values.RPSS_ENABLED "yes" | default "no" }} seccompProfile: type: RuntimeDefault {{- end }} @@ -55,7 +55,7 @@ spec: # The items below only work in container context allowPrivilegeEscalation: false capabilities: - {{- if eq .Values.RPSS_ENABLED "yes" }} + {{- if eq .Values.RPSS_ENABLED "yes" | default "no" }} drop: ["ALL"] {{- else }} drop: ["NET_RAW"] diff --git a/nextcloud-aio-helm-chart/templates/nextcloud-aio-whiteboard-deployment.yaml b/nextcloud-aio-helm-chart/templates/nextcloud-aio-whiteboard-deployment.yaml index 98979a5b62fe..2a0d27c0c032 100755 --- a/nextcloud-aio-helm-chart/templates/nextcloud-aio-whiteboard-deployment.yaml +++ b/nextcloud-aio-helm-chart/templates/nextcloud-aio-whiteboard-deployment.yaml @@ -30,7 +30,7 @@ spec: runAsUser: 65534 runAsGroup: 65534 runAsNonRoot: true - {{- if eq .Values.RPSS_ENABLED "yes" }} + {{- if eq .Values.RPSS_ENABLED "yes" | default "no" }} seccompProfile: type: RuntimeDefault {{- end }} @@ -57,7 +57,7 @@ spec: # The items below only work in container context allowPrivilegeEscalation: false capabilities: - {{- if eq .Values.RPSS_ENABLED "yes" }} + {{- if eq .Values.RPSS_ENABLED "yes" | default "no" }} drop: ["ALL"] {{- else }} drop: ["NET_RAW"]