deepgram / self-hosted-resources

Official Deepgram resources for deploying Deepgram services in a self-hosted environment
https://developers.deepgram.com
ISC License
11 stars 6 forks source link

Helm chart - no toleration for dg-models-aws-efs-models-management #48

Closed OleksandrKorliuk closed 1 week ago

OleksandrKorliuk commented 1 week ago

Proposed changes

In helm chart templates charts/deepgram-self-hosted/templates/volumes/aws/efs-model-download.job.yaml , there is no toleration block.

Context

In case of using engine on node with tolerations, job will fail to schedule.

Possible Implementation

Add toleration block to charts/deepgram-self-hosted/templates/volumes/aws/efs-model-download.job.yaml spec: template: spec: affinity: {{- toYaml .Values.engine.affinity | nindent 8 }} tolerations: {{- toYaml .Values.engine.tolerations | nindent 8 }} containers: