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
2 changes: 1 addition & 1 deletion charts/retool/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: retool
description: A Helm chart for Kubernetes
type: application
version: 6.10.0
version: 6.10.1
maintainers:
- name: Retool Engineering
email: engineering+helm@retool.com
Expand Down
1 change: 1 addition & 0 deletions charts/retool/templates/deployment_backend.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ spec:
{{ toYaml .Values.ui.labels | indent 8 }}
{{- end }}
spec:
terminationGracePeriodSeconds: {{ .Values.backend.terminationGracePeriodSeconds | default 136 }}
serviceAccountName: {{ template "retool.serviceAccountName" . }}
{{- if .Values.priorityClassName }}
priorityClassName: "{{ .Values.priorityClassName }}"
Expand Down
5 changes: 5 additions & 0 deletions charts/retool/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -384,6 +384,11 @@ backend:
# Labels for backend pods
labels: {}

# Make backend pods wait the specified time before kubernetes will forcibly kill them when they need to be rescheduled
# By default this is a 2 minutes + 15 seconds + 1 second (136) grace period to allow outstanding queries to complete
# Change this to 10 minutes 15 seconds + 1 second (616) if you are using long-running queries with a 10 minute timeout
terminationGracePeriodSeconds: 136

ui:
# Annotations for ui pods
annotations: {}
Expand Down
5 changes: 5 additions & 0 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -384,6 +384,11 @@ backend:
# Labels for backend pods
labels: {}

# Make backend pods wait the specified time before kubernetes will forcibly kill them when they need to be rescheduled
# By default this is a 2 minutes + 15 seconds + 1 second (136) grace period to allow outstanding queries to complete
# Change this to 10 minutes 15 seconds + 1 second (616) if you are using long-running queries with a 10 minute timeout
terminationGracePeriodSeconds: 136

ui:
# Annotations for ui pods
annotations: {}
Expand Down
Loading