From e146a67afd6e3bd7fc73acee51d742990bb79edd Mon Sep 17 00:00:00 2001 From: Jonas Juselius Date: Thu, 6 Jun 2024 13:18:45 +0200 Subject: [PATCH] feat: make appsettings a configmap --- charts/archmeister/templates/deployment.yaml | 4 ++-- charts/atlantis/templates/deployment.yaml | 4 ++-- charts/hipster/templates/deployment.yaml | 4 ++-- charts/petimeter/templates/deployment.yaml | 4 ++-- charts/sorcerer/templates/deployment.yaml | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/charts/archmeister/templates/deployment.yaml b/charts/archmeister/templates/deployment.yaml index 10825179..432cc278 100644 --- a/charts/archmeister/templates/deployment.yaml +++ b/charts/archmeister/templates/deployment.yaml @@ -84,8 +84,8 @@ spec: emptyDir: {} {{- end }} - name: appsettings - secret: - secretName: {{ template "Archmeister.fullname" . }}-appsettings + configMap: + name: {{ template "Archmeister.fullname" . }}-appsettings {{- with .Values.nodeSelector }} nodeSelector: {{- toYaml . | nindent 8 }} diff --git a/charts/atlantis/templates/deployment.yaml b/charts/atlantis/templates/deployment.yaml index e6f6dc55..14ff716d 100644 --- a/charts/atlantis/templates/deployment.yaml +++ b/charts/atlantis/templates/deployment.yaml @@ -83,8 +83,8 @@ spec: emptyDir: {} {{- end }} - name: appsettings - secret: - secretName: {{ template "Atlantis.fullname" . }}-appsettings + configMap: + name: {{ template "Atlantis.fullname" . }}-appsettings {{- with .Values.nodeSelector }} nodeSelector: {{- toYaml . | nindent 8 }} diff --git a/charts/hipster/templates/deployment.yaml b/charts/hipster/templates/deployment.yaml index a39ac954..a19dcf79 100644 --- a/charts/hipster/templates/deployment.yaml +++ b/charts/hipster/templates/deployment.yaml @@ -81,8 +81,8 @@ spec: emptyDir: {} {{- end }} - name: appsettings - secret: - secretName: {{ template "Hipster.fullname" . }}-appsettings + configMap: + name: {{ template "Hipster.fullname" . }}-appsettings {{- with .Values.nodeSelector }} nodeSelector: {{- toYaml . | nindent 8 }} diff --git a/charts/petimeter/templates/deployment.yaml b/charts/petimeter/templates/deployment.yaml index b666015f..028edef9 100644 --- a/charts/petimeter/templates/deployment.yaml +++ b/charts/petimeter/templates/deployment.yaml @@ -84,8 +84,8 @@ spec: emptyDir: {} {{- end }} - name: appsettings - secret: - secretName: {{ template "Petimeter.fullname" . }}-appsettings + configMap: + name: {{ template "Petimeter.fullname" . }}-appsettings {{- with .Values.nodeSelector }} nodeSelector: {{- toYaml . | nindent 8 }} diff --git a/charts/sorcerer/templates/deployment.yaml b/charts/sorcerer/templates/deployment.yaml index 743b3f8e..a2630a54 100644 --- a/charts/sorcerer/templates/deployment.yaml +++ b/charts/sorcerer/templates/deployment.yaml @@ -84,8 +84,8 @@ spec: emptyDir: {} {{- end }} - name: appsettings - secret: - secretName: {{ template "Sorcerer.fullname" . }}-appsettings + configMap: + name: {{ template "Sorcerer.fullname" . }}-appsettings {{- with .Values.nodeSelector }} nodeSelector: {{- toYaml . | nindent 8 }}