feat(infrastructure): automatic deploy

This commit is contained in:
2025-10-05 20:40:40 +02:00
parent 35e2ca6a72
commit 8e1d65a078
7 changed files with 82 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
{{- if .Values.rabbitmq.password }}
apiVersion: v1
kind: Secret
metadata:
name: {{ printf "%s-user-credentials" (.Values.rabbitmq.username | default "app-user") }}
namespace: {{ .Values.rabbitmq.namespace | default "rabbitmq" }}
labels:
app.kubernetes.io/managed-by: Helm
stringData:
password: {{ .Values.rabbitmq.password | quote }}
{{- end }}