mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-02-06 10:05:23 -05:00
![Moritz Sanft](/assets/img/avatar_default.png)
* cli: move internal packages Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> * cli: fix buildfiles Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> * bazel: fix exclude dir Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> * cli: move back libraries that will not be used by TF provider Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> --------- Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com>
13 lines
475 B
YAML
13 lines
475 B
YAML
{{- if and (or .Values.externalWorkloads.enabled .Values.clustermesh.useAPIServer) .Values.clustermesh.apiserver.tls.auto.enabled (eq .Values.clustermesh.apiserver.tls.auto.method "helm") }}
|
|
{{- $_ := include "clustermesh-apiserver-generate-certs.helm.setup-ca" . -}}
|
|
---
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: clustermesh-apiserver-ca-cert
|
|
namespace: {{ .Release.Namespace }}
|
|
data:
|
|
ca.crt: {{ .cmca.Cert | b64enc }}
|
|
ca.key: {{ .cmca.Key | b64enc }}
|
|
{{- end }}
|