You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- apiVersion: v1
- kind: ConfigMap
- metadata:
- name: {{ template "redis-ha.fullname" . }}-configmap
- namespace: {{ .Release.Namespace }}
- labels:
- heritage: {{ .Release.Service }}
- release: {{ .Release.Name }}
- chart: {{ .Chart.Name }}-{{ .Chart.Version }}
- app: {{ template "redis-ha.fullname" . }}
- data:
- redis.conf: |
- {{- include "config-redis.conf" . }}
-
- sentinel.conf: |
- {{- include "config-sentinel.conf" . }}
-
- init.sh: |
- {{- include "config-init.sh" . }}
- {{ if .Values.haproxy.enabled }}
- haproxy.cfg: |-
- {{- include "config-haproxy.cfg" . }}
- {{- end }}
- haproxy_init.sh: |
- {{- include "config-haproxy_init.sh" . }}
|