mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-01-25 06:36:48 -05:00
12 lines
421 B
YAML
12 lines
421 B
YAML
|
{{- if and .Values.tls.caBundle.enabled .Values.tls.caBundle.content -}}
|
||
|
---
|
||
|
apiVersion: v1
|
||
|
kind: {{ .Values.tls.caBundle.useSecret | ternary "Secret" "ConfigMap" }}
|
||
|
metadata:
|
||
|
name: {{ .Values.tls.caBundle.name }}
|
||
|
namespace: {{ .Release.Namespace }}
|
||
|
{{ .Values.tls.caBundle.useSecret | ternary "stringData" "data" }}:
|
||
|
{{ .Values.tls.caBundle.key }}: |
|
||
|
{{- .Values.tls.caBundle.content | nindent 4 }}
|
||
|
{{- end }}
|