diff --git a/helm/core-user-guide/Chart.yaml b/helm/core-user-guide/Chart.yaml
index 1eb77e2fae0fba47c0f741f578fc9e6f4bd569c6..a87930649faaf59f847ee7b9f34af26d2452bb47 100644
--- a/helm/core-user-guide/Chart.yaml
+++ b/helm/core-user-guide/Chart.yaml
@@ -15,7 +15,7 @@ type: application
 # This is the chart version. This version number should be incremented each time you make changes
 # to the chart and its templates, including the app version.
 # Versions are expected to follow Semantic Versioning (https://semver.org/)
-version: 2.24.0
+version: 2.24.1
 
 # This is the version number of the application being deployed. This version number should be
 # incremented each time you make changes to the application. Versions are not expected to
@@ -24,5 +24,5 @@ version: 2.24.0
 appVersion: "8.24.0"
 dependencies:
   - name: ox-common
-    version: ~1.0.33
+    version: ~1.0.38
     repository: "oci://registry.open-xchange.com/appsuite-core-internal/charts"
diff --git a/helm/core-user-guide/templates/deployment.yaml b/helm/core-user-guide/templates/deployment.yaml
index be99309e7cd3592956bcd23011d3a8085105994f..1818e79a1541c3c768c92ad1399394e266ea8968 100644
--- a/helm/core-user-guide/templates/deployment.yaml
+++ b/helm/core-user-guide/templates/deployment.yaml
@@ -17,7 +17,7 @@ spec:
     spec: {{ include "ox-common.pods.podSpec" (dict "podRoot" .Values "global" $ "context" . ) | nindent 6 }}
       containers:
         - name: main
-          securityContext: {{ toYaml .Values.securityContext | nindent 12 }}
+          {{- include "ox-common.containers.securityContext" (dict "podRoot" .Values "context" . "global" $) | nindent 10 }}
           image: {{ include "ox-common.images.image" (dict "imageRoot" .Values.image "global" $ "context" . ) }}
           imagePullPolicy: {{ .Values.image.pullPolicy }}
           ports:
diff --git a/helm/core-user-guide/values.yaml b/helm/core-user-guide/values.yaml
index da88354270d70f5ca4c425f90bdce88e6cc69069..b89198aed54deb2fcf8503cbf00e87873a072130 100644
--- a/helm/core-user-guide/values.yaml
+++ b/helm/core-user-guide/values.yaml
@@ -18,12 +18,16 @@ fullnameOverride: ""
 
 podAnnotations: {}
 
-podSecurityContext:
+podSecurityContext: {}
+
+defaultPodSecurityContext:
   runAsNonRoot: true
   runAsUser: 1000
   runAsGroup: 1000
 
-securityContext:
+securityContext: {}
+
+defaultSecurityContext:
   runAsNonRoot: true
   runAsUser: 1000
   runAsGroup: 1000