added repo

This commit is contained in:
Your Name
2026-08-26 03:39:42 +05:30
parent 45c25a95af
commit b8575bb8b9
6889 changed files with 1217125 additions and 0 deletions
@@ -0,0 +1,18 @@
{{- if .Values.postgres.create }}
---
apiVersion: v1
kind: Secret
type: Opaque
metadata:
name: {{ include "deepfence-console.fullname" . }}-secrets-postgres
labels:
{{- include "deepfence-console.labels" . | nindent 4 }}
name: {{ include "deepfence-console.fullname" . }}-secrets-postgres
stringData:
DEEPFENCE_POSTGRES_USER_DB_PORT: "5432"
DEEPFENCE_POSTGRES_USER_DB_HOST: {{ include "deepfence-console.fullname" . }}-postgres
DEEPFENCE_POSTGRES_USER_DB_SSLMODE: disable
DEEPFENCE_POSTGRES_USER_DB_USER: {{ .Values.postgres.secrets.POSTGRES_USER | quote }}
DEEPFENCE_POSTGRES_USER_DB_PASSWORD: {{ .Values.postgres.secrets.POSTGRES_PASSWORD | quote }}
DEEPFENCE_POSTGRES_USER_DB_NAME: {{ .Values.postgres.secrets.POSTGRES_DB | quote }}
{{- end }}