From 35fe0d172cd56b7171a2c2ee937ff04954470c17 Mon Sep 17 00:00:00 2001 From: Jorge Moratinos Salcines Date: Mon, 8 Jul 2024 13:18:17 +0200 Subject: [PATCH 1/2] Fix deployment of register --- helm/capif/charts/ocf-register/templates/deployment.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/helm/capif/charts/ocf-register/templates/deployment.yaml b/helm/capif/charts/ocf-register/templates/deployment.yaml index 3d249c5..43f44d9 100644 --- a/helm/capif/charts/ocf-register/templates/deployment.yaml +++ b/helm/capif/charts/ocf-register/templates/deployment.yaml @@ -29,6 +29,9 @@ spec: serviceAccountName: {{ include "ocf-register.serviceAccountName" . }} securityContext: {{- toYaml .Values.podSecurityContext | nindent 8 }} + {{- with .Values.extraConfigPod }} + {{- toYaml . | nindent 6 }} + {{- end }} containers: {{- with .Values.extraConfigPod }} {{- toYaml . | nindent 8 }} -- GitLab From c7e714419d5f3f6d1d3bce464245f8b742fad4ee Mon Sep 17 00:00:00 2001 From: Jorge Moratinos Salcines Date: Mon, 8 Jul 2024 13:22:59 +0200 Subject: [PATCH 2/2] Fix deployment of register --- helm/capif/charts/ocf-register/templates/deployment.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/helm/capif/charts/ocf-register/templates/deployment.yaml b/helm/capif/charts/ocf-register/templates/deployment.yaml index 43f44d9..ffe49ed 100644 --- a/helm/capif/charts/ocf-register/templates/deployment.yaml +++ b/helm/capif/charts/ocf-register/templates/deployment.yaml @@ -33,9 +33,6 @@ spec: {{- toYaml . | nindent 6 }} {{- end }} containers: - {{- with .Values.extraConfigPod }} - {{- toYaml . | nindent 8 }} - {{- end }} - name: {{ .Chart.Name }} securityContext: {{- toYaml .Values.securityContext | nindent 12 }} -- GitLab