Closed OleksandrKorliuk closed 1 week ago
In helm chart templates charts/deepgram-self-hosted/templates/volumes/aws/efs-model-download.job.yaml , there is no toleration block.
In case of using engine on node with tolerations, job will fail to schedule.
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:
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:
Other information