mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-01-30 01:03:31 -05:00
e9694d40b9
Bumping Cilium to also enable node-to-node encryption and node-to-node strict mode. Since the second is not upstream we use our fork.
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 }}
|