Updated helm chart with additional config settings (#566)

This commit is contained in:
chgl
2023-07-21 16:26:10 +02:00
committed by GitHub
parent 5bd43b29c9
commit 8ef50832d3
8 changed files with 126 additions and 80 deletions

View File

@@ -0,0 +1,11 @@
{{- if .Values.extraConfig -}}
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ include "hapi-fhir-jpaserver.fullname" . }}-application-config
labels:
{{- include "hapi-fhir-jpaserver.labels" . | nindent 4 }}
data:
application-extra.yaml: |-
{{ .Values.extraConfig | nindent 4 }}
{{- end }}