diff --git a/jsonnet/kube-prometheus/components/blackbox-exporter.libsonnet b/jsonnet/kube-prometheus/components/blackbox-exporter.libsonnet index 3129a4dca8489468ed8f5caaaebb93c624d714e8..2db244c40c1debd9daabb3db67006b2fa787580b 100644 --- a/jsonnet/kube-prometheus/components/blackbox-exporter.libsonnet +++ b/jsonnet/kube-prometheus/components/blackbox-exporter.libsonnet @@ -183,6 +183,7 @@ function(params) { } else { runAsNonRoot: true, runAsUser: 65534, + runAsGroup: 65534, allowPrivilegeEscalation: false, readOnlyRootFilesystem: true, capabilities: { drop: ['ALL'] }, @@ -205,6 +206,7 @@ function(params) { securityContext: { runAsNonRoot: true, runAsUser: 65534, + runAsGroup: 65534, allowPrivilegeEscalation: false, readOnlyRootFilesystem: true, capabilities: { drop: ['ALL'] }, diff --git a/manifests/blackboxExporter-deployment.yaml b/manifests/blackboxExporter-deployment.yaml index a513713093a583e228a7a0a7bae4e1588750d6b0..10fbcce128f5f941a5b1a8d54001adbcc7efc7c0 100644 --- a/manifests/blackboxExporter-deployment.yaml +++ b/manifests/blackboxExporter-deployment.yaml @@ -48,6 +48,7 @@ spec: drop: - ALL readOnlyRootFilesystem: true + runAsGroup: 65534 runAsNonRoot: true runAsUser: 65534 volumeMounts: @@ -72,6 +73,7 @@ spec: drop: - ALL readOnlyRootFilesystem: true + runAsGroup: 65534 runAsNonRoot: true runAsUser: 65534 terminationMessagePath: /dev/termination-log