16 lines
589 B
YAML
Executable file
16 lines
589 B
YAML
Executable file
{{- if (include "kafka.createConfigmap" .) }}
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ template "kafka.fullname" . }}-configuration
|
|
labels: {{- include "kafka.labels" . | nindent 4 }}
|
|
{{- if .Values.commonLabels }}
|
|
{{- include "kafka.tplValue" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
|
|
{{- end }}
|
|
{{- if .Values.commonAnnotations }}
|
|
annotations: {{- include "kafka.tplValue" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
|
|
{{- end }}
|
|
data:
|
|
server.properties: |-
|
|
{{ .Values.config | nindent 4 }}
|
|
{{- end -}}
|