mirror of
https://github.com/eliasstepanik/caddy-ingess.git
synced 2026-01-11 12:38:27 +00:00
11 lines
291 B
YAML
11 lines
291 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ include "caddy-ingress-controller.name" . }}-configmap
|
|
namespace: {{ .Release.Namespace }}
|
|
data:
|
|
{{- range keys .Values.ingressController.config | sortAlpha }}
|
|
{{ . }}: {{ get $.Values.ingressController.config . | quote }}
|
|
{{- end }}
|
|
|