argocd-helm/charts/argo-cd/templates/argocd-configs/argocd-tls-certs-cm.yaml

15 lines
489 B
YAML
Raw Normal View History

2019-11-04 16:17:25 -08:00
apiVersion: v1
{{- if .Values.configs.tlsCerts }}
{{- toYaml .Values.configs.tlsCerts | nindent 0 }}
{{- end }}
kind: ConfigMap
metadata:
labels:
{{- include "argo-cd.labels" (dict "context" . "component" .Values.server.name "name" "tls-certs-cm") | nindent 4 }}
{{- if .Values.configs.tlsCertsAnnotations }}
annotations:
{{- range $key, $value := .Values.configs.tlsCertsAnnotations }}
{{ $key }}: {{ $value | quote }}
{{- end }}
{{- end }}
2019-11-04 16:17:25 -08:00
name: argocd-tls-certs-cm