From 0686f27803ad20aaef8a2b9db2db3d694e611205 Mon Sep 17 00:00:00 2001 From: rjshrjndrn Date: Thu, 3 Nov 2022 04:46:00 +0100 Subject: [PATCH] chore(helm): sharing processNamespace for vault sigterm --- .../openreplay/charts/alerts/templates/deployment.yaml | 1 + .../openreplay/charts/assets/templates/deployment.yaml | 1 + .../openreplay/charts/assist/templates/deployment.yaml | 1 + .../openreplay/charts/chalice/templates/deployment.yaml | 1 + .../helmcharts/openreplay/charts/db/templates/deployment.yaml | 1 + .../helmcharts/openreplay/charts/ender/templates/deployment.yaml | 1 + .../openreplay/charts/frontend/templates/deployment.yaml | 1 + .../openreplay/charts/heuristics/templates/deployment.yaml | 1 + .../helmcharts/openreplay/charts/http/templates/deployment.yaml | 1 + .../openreplay/charts/integrations/templates/deployment.yaml | 1 + .../helmcharts/openreplay/charts/peers/templates/deployment.yaml | 1 + .../openreplay/charts/quickwit/templates/deployment.yaml | 1 + .../helmcharts/openreplay/charts/sink/templates/deployment.yaml | 1 + .../openreplay/charts/sourcemapreader/templates/deployment.yaml | 1 + .../openreplay/charts/storage/templates/deployment.yaml | 1 + 15 files changed, 15 insertions(+) diff --git a/scripts/helmcharts/openreplay/charts/alerts/templates/deployment.yaml b/scripts/helmcharts/openreplay/charts/alerts/templates/deployment.yaml index 992f67b4d..57ee8af1b 100644 --- a/scripts/helmcharts/openreplay/charts/alerts/templates/deployment.yaml +++ b/scripts/helmcharts/openreplay/charts/alerts/templates/deployment.yaml @@ -28,6 +28,7 @@ spec: serviceAccountName: {{ include "alerts.serviceAccountName" . }} securityContext: {{- toYaml .Values.podSecurityContext | nindent 8 }} + shareProcessNamespace: true containers: - name: {{ .Chart.Name }} securityContext: diff --git a/scripts/helmcharts/openreplay/charts/assets/templates/deployment.yaml b/scripts/helmcharts/openreplay/charts/assets/templates/deployment.yaml index 5fbd084c0..2a6aaf0ef 100644 --- a/scripts/helmcharts/openreplay/charts/assets/templates/deployment.yaml +++ b/scripts/helmcharts/openreplay/charts/assets/templates/deployment.yaml @@ -28,6 +28,7 @@ spec: serviceAccountName: {{ include "assets.serviceAccountName" . }} securityContext: {{- toYaml .Values.podSecurityContext | nindent 8 }} + shareProcessNamespace: true containers: - name: {{ .Chart.Name }} securityContext: diff --git a/scripts/helmcharts/openreplay/charts/assist/templates/deployment.yaml b/scripts/helmcharts/openreplay/charts/assist/templates/deployment.yaml index 6daf5a79f..a0fe1563e 100644 --- a/scripts/helmcharts/openreplay/charts/assist/templates/deployment.yaml +++ b/scripts/helmcharts/openreplay/charts/assist/templates/deployment.yaml @@ -28,6 +28,7 @@ spec: serviceAccountName: {{ include "assist.serviceAccountName" . }} securityContext: {{- toYaml .Values.podSecurityContext | nindent 8 }} + shareProcessNamespace: true containers: - name: {{ .Chart.Name }} securityContext: diff --git a/scripts/helmcharts/openreplay/charts/chalice/templates/deployment.yaml b/scripts/helmcharts/openreplay/charts/chalice/templates/deployment.yaml index 6f7f36631..6dd840d57 100644 --- a/scripts/helmcharts/openreplay/charts/chalice/templates/deployment.yaml +++ b/scripts/helmcharts/openreplay/charts/chalice/templates/deployment.yaml @@ -28,6 +28,7 @@ spec: serviceAccountName: {{ include "chalice.serviceAccountName" . }} securityContext: {{- toYaml .Values.podSecurityContext | nindent 8 }} + shareProcessNamespace: true containers: - name: {{ .Chart.Name }} securityContext: diff --git a/scripts/helmcharts/openreplay/charts/db/templates/deployment.yaml b/scripts/helmcharts/openreplay/charts/db/templates/deployment.yaml index f05bdd42b..21b9c5c6e 100644 --- a/scripts/helmcharts/openreplay/charts/db/templates/deployment.yaml +++ b/scripts/helmcharts/openreplay/charts/db/templates/deployment.yaml @@ -28,6 +28,7 @@ spec: serviceAccountName: {{ include "db.serviceAccountName" . }} securityContext: {{- toYaml .Values.podSecurityContext | nindent 8 }} + shareProcessNamespace: true containers: - name: {{ .Chart.Name }} securityContext: diff --git a/scripts/helmcharts/openreplay/charts/ender/templates/deployment.yaml b/scripts/helmcharts/openreplay/charts/ender/templates/deployment.yaml index a313415c8..808578b76 100644 --- a/scripts/helmcharts/openreplay/charts/ender/templates/deployment.yaml +++ b/scripts/helmcharts/openreplay/charts/ender/templates/deployment.yaml @@ -28,6 +28,7 @@ spec: serviceAccountName: {{ include "ender.serviceAccountName" . }} securityContext: {{- toYaml .Values.podSecurityContext | nindent 8 }} + shareProcessNamespace: true containers: - name: {{ .Chart.Name }} securityContext: diff --git a/scripts/helmcharts/openreplay/charts/frontend/templates/deployment.yaml b/scripts/helmcharts/openreplay/charts/frontend/templates/deployment.yaml index 7a1224e41..34cb53fd9 100644 --- a/scripts/helmcharts/openreplay/charts/frontend/templates/deployment.yaml +++ b/scripts/helmcharts/openreplay/charts/frontend/templates/deployment.yaml @@ -28,6 +28,7 @@ spec: serviceAccountName: {{ include "frontend.serviceAccountName" . }} securityContext: {{- toYaml .Values.podSecurityContext | nindent 8 }} + shareProcessNamespace: true containers: - name: {{ .Chart.Name }} securityContext: diff --git a/scripts/helmcharts/openreplay/charts/heuristics/templates/deployment.yaml b/scripts/helmcharts/openreplay/charts/heuristics/templates/deployment.yaml index 58059f58d..4e1b78605 100644 --- a/scripts/helmcharts/openreplay/charts/heuristics/templates/deployment.yaml +++ b/scripts/helmcharts/openreplay/charts/heuristics/templates/deployment.yaml @@ -28,6 +28,7 @@ spec: serviceAccountName: {{ include "heuristics.serviceAccountName" . }} securityContext: {{- toYaml .Values.podSecurityContext | nindent 8 }} + shareProcessNamespace: true containers: - name: {{ .Chart.Name }} securityContext: diff --git a/scripts/helmcharts/openreplay/charts/http/templates/deployment.yaml b/scripts/helmcharts/openreplay/charts/http/templates/deployment.yaml index eaa5d7ed1..0924f3b4c 100644 --- a/scripts/helmcharts/openreplay/charts/http/templates/deployment.yaml +++ b/scripts/helmcharts/openreplay/charts/http/templates/deployment.yaml @@ -28,6 +28,7 @@ spec: serviceAccountName: {{ include "http.serviceAccountName" . }} securityContext: {{- toYaml .Values.podSecurityContext | nindent 8 }} + shareProcessNamespace: true containers: - name: {{ .Chart.Name }} securityContext: diff --git a/scripts/helmcharts/openreplay/charts/integrations/templates/deployment.yaml b/scripts/helmcharts/openreplay/charts/integrations/templates/deployment.yaml index e0f3fff60..910db4bae 100644 --- a/scripts/helmcharts/openreplay/charts/integrations/templates/deployment.yaml +++ b/scripts/helmcharts/openreplay/charts/integrations/templates/deployment.yaml @@ -28,6 +28,7 @@ spec: serviceAccountName: {{ include "integrations.serviceAccountName" . }} securityContext: {{- toYaml .Values.podSecurityContext | nindent 8 }} + shareProcessNamespace: true containers: - name: {{ .Chart.Name }} securityContext: diff --git a/scripts/helmcharts/openreplay/charts/peers/templates/deployment.yaml b/scripts/helmcharts/openreplay/charts/peers/templates/deployment.yaml index 7c08dd718..cef60a000 100644 --- a/scripts/helmcharts/openreplay/charts/peers/templates/deployment.yaml +++ b/scripts/helmcharts/openreplay/charts/peers/templates/deployment.yaml @@ -28,6 +28,7 @@ spec: serviceAccountName: {{ include "peers.serviceAccountName" . }} securityContext: {{- toYaml .Values.podSecurityContext | nindent 8 }} + shareProcessNamespace: true containers: - name: {{ .Chart.Name }} securityContext: diff --git a/scripts/helmcharts/openreplay/charts/quickwit/templates/deployment.yaml b/scripts/helmcharts/openreplay/charts/quickwit/templates/deployment.yaml index df6a3181e..6c6137594 100644 --- a/scripts/helmcharts/openreplay/charts/quickwit/templates/deployment.yaml +++ b/scripts/helmcharts/openreplay/charts/quickwit/templates/deployment.yaml @@ -27,6 +27,7 @@ spec: serviceAccountName: {{ include "quickwit.serviceAccountName" . }} securityContext: {{- toYaml .Values.podSecurityContext | nindent 8 }} + shareProcessNamespace: true containers: - name: {{ .Chart.Name }} securityContext: diff --git a/scripts/helmcharts/openreplay/charts/sink/templates/deployment.yaml b/scripts/helmcharts/openreplay/charts/sink/templates/deployment.yaml index 06bbad289..7c953f963 100644 --- a/scripts/helmcharts/openreplay/charts/sink/templates/deployment.yaml +++ b/scripts/helmcharts/openreplay/charts/sink/templates/deployment.yaml @@ -28,6 +28,7 @@ spec: serviceAccountName: {{ include "sink.serviceAccountName" . }} securityContext: {{- toYaml .Values.podSecurityContext | nindent 8 }} + shareProcessNamespace: true containers: - name: {{ .Chart.Name }} securityContext: diff --git a/scripts/helmcharts/openreplay/charts/sourcemapreader/templates/deployment.yaml b/scripts/helmcharts/openreplay/charts/sourcemapreader/templates/deployment.yaml index d8a5b108f..2fcd0c6df 100644 --- a/scripts/helmcharts/openreplay/charts/sourcemapreader/templates/deployment.yaml +++ b/scripts/helmcharts/openreplay/charts/sourcemapreader/templates/deployment.yaml @@ -28,6 +28,7 @@ spec: serviceAccountName: {{ include "sourcemapreader.serviceAccountName" . }} securityContext: {{- toYaml .Values.podSecurityContext | nindent 8 }} + shareProcessNamespace: true containers: - name: {{ .Chart.Name }} securityContext: diff --git a/scripts/helmcharts/openreplay/charts/storage/templates/deployment.yaml b/scripts/helmcharts/openreplay/charts/storage/templates/deployment.yaml index 5a2e8c73d..321bf0745 100644 --- a/scripts/helmcharts/openreplay/charts/storage/templates/deployment.yaml +++ b/scripts/helmcharts/openreplay/charts/storage/templates/deployment.yaml @@ -28,6 +28,7 @@ spec: serviceAccountName: {{ include "storage.serviceAccountName" . }} securityContext: {{- toYaml .Values.podSecurityContext | nindent 8 }} + shareProcessNamespace: true containers: - name: {{ .Chart.Name }} securityContext: