mirror of
https://github.com/shankar0123/certctl.git
synced 2026-06-10 08:18:56 +00:00
397d2a1588
Default to "changeme" so helm lint and helm template pass with stock values. Operators override at install time via --set. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
13 lines
415 B
YAML
13 lines
415 B
YAML
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: {{ include "certctl.fullname" . }}-postgres
|
|
labels:
|
|
{{- include "certctl.labels" . | nindent 4 }}
|
|
app.kubernetes.io/component: postgres
|
|
type: Opaque
|
|
stringData:
|
|
password: {{ .Values.postgresql.auth.password | default "changeme" | quote }}
|
|
username: {{ .Values.postgresql.auth.username | quote }}
|
|
database: {{ .Values.postgresql.auth.database | quote }}
|