mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
19 lines
646 B
YAML
19 lines
646 B
YAML
{{- if $.Values.server.enabled }}
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: "{{ include "temporal.fullname" . }}-dynamic-config"
|
|
labels:
|
|
app.kubernetes.io/name: {{ include "temporal.name" . }}
|
|
helm.sh/chart: {{ include "temporal.chart" . }}
|
|
app.kubernetes.io/managed-by: {{ .Release.Service }}
|
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
app.kubernetes.io/version: {{ .Chart.AppVersion | replace "+" "_" }}
|
|
app.kubernetes.io/part-of: {{ .Chart.Name }}
|
|
data:
|
|
dynamic_config.yaml: |-
|
|
{{- if $.Values.server.dynamicConfig }}
|
|
{{- toYaml .Values.server.dynamicConfig | nindent 4 }}
|
|
{{- end }}
|
|
{{- end }}
|