mirror of
https://github.com/bvanroll/cicdTest.git
synced 2025-08-29 12:02:47 +00:00
24 lines
855 B
YAML
24 lines
855 B
YAML
# ConfigMap with extra configuration specified directly to the chart
|
|
# for client agents only.
|
|
{{- if (or (and (ne (.Values.client.enabled | toString) "-") .Values.client.enabled) (and (eq (.Values.client.enabled | toString) "-") .Values.global.enabled)) }}
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ template "consul.fullname" . }}-client-config
|
|
namespace: {{ .Release.Namespace }}
|
|
labels:
|
|
app: {{ template "consul.name" . }}
|
|
chart: {{ template "consul.chart" . }}
|
|
heritage: {{ .Release.Service }}
|
|
release: {{ .Release.Name }}
|
|
data:
|
|
extra-from-values.json: |-
|
|
{{ tpl .Values.client.extraConfig . | trimAll "\"" | indent 4 }}
|
|
{{- if (and .Values.connectInject.enabled .Values.connectInject.centralConfig.enabled) }}
|
|
central-config.json: |-
|
|
{
|
|
"enable_central_service_config": true
|
|
}
|
|
{{- end }}
|
|
{{- end }}
|