feat: support pod priorityClassName
All checks were successful
continuous-integration/drone/tag Build is passing

This commit is contained in:
2022-04-18 11:03:21 +02:00
parent f2e14a1dd5
commit 0c726c85dd
2 changed files with 8 additions and 3 deletions

View File

@ -47,13 +47,16 @@ spec:
port: http
resources:
{{- toYaml .Values.resources | nindent 12 }}
{{- with .Values.affinity }}
affinity:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.affinity }}
affinity:
{{- toYaml . | nindent 8 }}
{{- if .Values.podPriorityClassName }}
priorityClassName: {{ .Values.podPriorityClassName }}
{{- end }}
{{- with .Values.tolerations }}
tolerations:

View File

@ -22,6 +22,8 @@ serviceAccount:
podAnnotations: {}
podPriorityClassName: ""
podSecurityContext: {}
# fsGroup: 2000