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
3 changes: 3 additions & 0 deletions templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ spec:
{{- if .Values.serviceAccount.create }}
serviceAccountName: {{ include "pgdog.serviceAccountName" . }}
{{- end }}
{{- if .Values.priorityClassName }}
priorityClassName: {{ .Values.priorityClassName }}
{{- end }}
{{- if .Values.terminationGracePeriodSeconds }}
terminationGracePeriodSeconds: {{ .Values.terminationGracePeriodSeconds }}
{{- end }}
Expand Down
4 changes: 4 additions & 0 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,10 @@ port: 6432
# replicas indicates how many instances of PgDog will run (HA).
replicas: 2

# priorityClassName assigns a PriorityClass to pgdog pods for scheduling priority.
# Not set by default; omitted from the pod spec unless explicitly specified.
# Example: priorityClassName: production-critical

# Uncomment to enable explicit grace period
# terminationGracePeriodSeconds: 90

Expand Down
Loading