Skip to content

Commit fd2fda0

Browse files
authored
Default priorityClassName to blank string (#253)
Issue #, if available: Relates #249 Relates #252 Description of changes: This fixes a bug I introduced in a previous PR (sorry!) This must default to an empty string rather than null or you get: ``` Error: values don't meet the specifications of the schema(s) in the following chart(s): s3-chart: - deployment.priorityClassName: Invalid type. Expected: string, given: null ``` By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
1 parent 60b04fe commit fd2fda0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/helm/values.yaml.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ deployment:
2727
affinity: {}
2828
# Which priorityClassName to set?
2929
# See: https://kubernetes.io/docs/concepts/scheduling-eviction/pod-priority-preemption/#pod-priority
30-
priorityClassName:
30+
priorityClassName: ""
3131

3232
metrics:
3333
service:

0 commit comments

Comments
 (0)