mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-14 10:24:24 -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 }}
|