Skip to content

Commit 530bb66

Browse files
timbrdjsjoeio
andauthored
Allow setting priorityClassName via helm chart (#5255)
Co-authored-by: Joe Previte <[email protected]>
1 parent 19f486b commit 530bb66

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

ci/helm-chart/templates/deployment.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ spec:
2525
{{- if .Values.hostnameOverride }}
2626
hostname: {{ .Values.hostnameOverride }}
2727
{{- end }}
28+
{{- if .Values.priorityClassName }}
29+
priorityClassName: {{ .Values.priorityClassName }}
30+
{{- end }}
2831
{{- if .Values.securityContext.enabled }}
2932
securityContext:
3033
fsGroup: {{ .Values.securityContext.fsGroup }}

ci/helm-chart/values.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ podAnnotations: {}
3333
podSecurityContext: {}
3434
# fsGroup: 2000
3535

36+
priorityClassName: ""
37+
3638
service:
3739
type: ClusterIP
3840
port: 8080

0 commit comments

Comments
 (0)