fix: fix volumes and secrets for atlantis

This commit is contained in:
2024-10-04 14:28:09 +02:00
parent 1eb0e6c630
commit 2e00aceed1
4 changed files with 76 additions and 15 deletions
+22
View File
@@ -29,4 +29,26 @@ type: kubernetes.io/basic-auth
data:
username:
password:
{{- else }}
apiVersion: v1
kind: Secret
metadata:
annotations:
kyverno/clone: "true"
name: {{ .Values.cluster.bootstrap.source.db }}-replication
type: kubernetes.io/tls
data:
tls.crt: ""
tls.key: ""
---
apiVersion: v1
kind: Secret
type: Opaque
metadata:
annotations:
kyverno/clone: "true"
name: {{ .Values.cluster.bootstrap.source.db }}-ca
data:
ca.crt: ""
ca.key: ""
{{- end }}