Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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 charts/trino/templates/deployment-coordinator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ spec:
{{- tpl (toYaml .Values.coordinator.labels) . | nindent 8 }}
{{- end }}
spec:
{{- if .Values.coordinator.priorityClassName }}
priorityClassName: {{ .Values.coordinator.priorityClassName }}
{{- end }}
serviceAccountName: {{ include "trino.serviceAccountName" . }}
{{- with .Values.securityContext }}
securityContext:
Expand Down
3 changes: 3 additions & 0 deletions charts/trino/templates/deployment-worker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ spec:
{{- tpl (toYaml .Values.worker.labels) . | nindent 8 }}
{{- end }}
spec:
{{- if .Values.worker.priorityClassName }}
priorityClassName: {{ .Values.worker.priorityClassName }}
{{- end }}
serviceAccountName: {{ include "trino.serviceAccountName" . }}
{{- with .Values.securityContext }}
securityContext:
Expand Down
8 changes: 8 additions & 0 deletions charts/trino/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -731,6 +731,10 @@ coordinator:
# mountPath: /usr/share/extras
# readOnly: true

priorityClassName: ~
# worker.priorityClassName -- Kubernetes priority class for scheduling.
# By default, no priority class will be set.

annotations: {}
# coordinator.annotations -- Annotations to add to the coordinator pod.
# @raw
Expand Down Expand Up @@ -954,6 +958,10 @@ worker:
# readOnly: true
# ```

priorityClassName: ~
# worker.priorityClassName -- Kubernetes priority class for scheduling.
# By default, no priority class will be set.

annotations: {}
# worker.annotations -- Annotations to add to the worker pods.
# @raw
Expand Down
Loading