Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ metadata:
"helm.sh/hook": post-install,post-upgrade
"helm.sh/hook-delete-policy": before-hook-creation
spec:
ttlSecondsAfterFinished: {{ .Values.engine.ttlSecondsAfterFinished }}
template:
spec:
affinity:
Expand Down
6 changes: 6 additions & 0 deletions charts/deepgram-self-hosted/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -695,6 +695,12 @@ engine:
# them. You can explicitly enable or disable this behavior with the state parameter
# which supports `"enable"`, `"disabled"`, and `"auto"`.
state: "auto"

# This determines the number of seconds that the Pod will be retained, for the Deepgram
# model manager. As long as this Pod is existing, it will keep a claim on the Kubernetes
# PersistentVolumeClaim, which can cause the PVC to hang in the "terminating" state, if the
# Helm chart is deleted (uninstalled).
ttlSecondsAfterFinished: 900

# -- Configuration options for the optional
# [Deepgram License Proxy](https://developers.deepgram.com/docs/license-proxy).
Expand Down
Loading