Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions templates/secrets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,10 @@ metadata:
name: {{ include "pgdog.fullname" . }}
labels:
{{- include "pgdog.labels" . | nindent 4 }}
{{- with .Values.secret.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
data:
users.toml: {{ include "pgdog.users" . | b64enc }}
{{- end }}
4 changes: 4 additions & 0 deletions templates/tls-secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ metadata:
name: {{ $fullname }}-tls
labels:
{{- include "pgdog.labels" . | nindent 4 }}
{{- with .Values.secret.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
type: kubernetes.io/tls
stringData:
tls.crt: |
Expand Down
6 changes: 5 additions & 1 deletion values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -652,4 +652,8 @@ prometheusCollector:
affinity: {}

securityContext: {}
podSecurityContext: {}
podSecurityContext: {}

secret:
# annotations allows adding custom annotations to the generated Secret
annotations: {}
Loading