Update Kong ingress controller to version 1.4. It fixes the occasional 404 error.
[ric-plt/ric-dep.git] / helm / infrastructure / subcharts / kong / templates / config-dbless.yaml
1 {{- if (and (not .Values.ingressController.enabled) (eq .Values.env.database "off")) }}
2 {{- if not .Values.dblessConfig.configMap }}
3 apiVersion: v1
4 kind: ConfigMap
5 metadata:
6   name: {{ template "kong.dblessConfig.fullname" . }}
7   labels:
8     {{- include "kong.metaLabels" . | nindent 4 }}
9 data:
10   kong.yml: |
11 {{ .Values.dblessConfig.config | toYaml | indent 4 }}
12 {{- end }}
13 {{- end }}