You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
692 B
YAML
18 lines
692 B
YAML
{{- if .Values.postgresql.secret.create }}
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: "{{ tpl (.Values.postgresql.secret.name) . }}"
|
|
namespace: {{ .Release.Namespace }}
|
|
labels:
|
|
{{- include "cvat.labels" . | nindent 4 }}
|
|
type: generic
|
|
stringData:
|
|
postgresql-hostname: "{{ .Release.Name }}-postgresql"
|
|
postgresql-database: {{ .Values.postgresql.postgresqlDatabase }}
|
|
postgresql-username: {{ .Values.postgresql.postgresqlUsername }}
|
|
postgresql-password: {{ .Values.postgresql.secret.password }}
|
|
postgresql-postgres-password: {{ .Values.postgresql.secret.postgres_password }}
|
|
postgresql-replication-password: {{ .Values.postgresql.secret.replication_password }}
|
|
{{- end }}
|