apiVersion: apps/v1 kind: Deployment metadata: annotations: kompose.version: 1.38.0 (a8f5d1cbd) labels: io.kompose.service: nextcloud-aio-notify-push name: nextcloud-aio-notify-push namespace: "{{ .Values.NAMESPACE }}" spec: replicas: 1 selector: matchLabels: io.kompose.service: nextcloud-aio-notify-push strategy: type: Recreate template: metadata: annotations: kompose.version: 1.38.0 (a8f5d1cbd) labels: io.kompose.service: nextcloud-aio-notify-push spec: securityContext: # The items below only work in pod context fsGroup: 33 fsGroupChangePolicy: "OnRootMismatch" # The items below work in both contexts runAsUser: 33 runAsGroup: 33 runAsNonRoot: true {{- if eq (.Values.RPSS_ENABLED | default "no") "yes" }} seccompProfile: type: RuntimeDefault {{- end }} containers: - env: - name: AIO_LOG_LEVEL value: "{{ .Values.AIO_LOG_LEVEL }}" - name: NEXTCLOUD_HOST value: nextcloud-aio-nextcloud - name: TZ value: "{{ .Values.TIMEZONE }}" image: ghcr.io/nextcloud-releases/aio-notify-push:20260513_090235 readinessProbe: exec: command: - /healthcheck.sh failureThreshold: 3 periodSeconds: 30 timeoutSeconds: 30 livenessProbe: exec: command: - /healthcheck.sh failureThreshold: 3 periodSeconds: 30 timeoutSeconds: 30 name: nextcloud-aio-notify-push ports: - containerPort: 7867 protocol: TCP securityContext: # The items below only work in container context allowPrivilegeEscalation: false capabilities: {{- if eq (.Values.RPSS_ENABLED | default "no") "yes" }} drop: ["ALL"] {{- else }} drop: ["NET_RAW"] {{- end }} volumeMounts: - mountPath: /var/www/html name: nextcloud-aio-nextcloud readOnly: true volumes: - name: nextcloud-aio-nextcloud persistentVolumeClaim: claimName: nextcloud-aio-nextcloud