Skip to content

Commit f7c50ac

Browse files
feat(helm): Allow Pod priorityClassName to be configured (#687)
* chore: Generated commit to update templated files since the last template run up to stackabletech/operator-templating@9937fb4 Reference-to: stackabletech/operator-templating@9937fb4 (This allows Pod `priorityClassName` to be configured in operators (excluding listener-operator and secret-operator). It requires a CHANGELOG entry before merging (see example in <stackabletech/operator-templating#551>).) * chore: Update changelog --------- Co-authored-by: Nick Larsen <[email protected]>
1 parent 560c2f8 commit f7c50ac

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

.yamllint.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@ rules:
1212
min-spaces-from-content: 1 # Needed due to https://github.com/adrienverge/yamllint/issues/443
1313
indentation:
1414
indent-sequences: consistent
15+
comments-indentation: disable # This is generally useless and interferes with commented example values

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
- Add a flag to determine if database initialization steps should be executed ([#669]).
88
- Add new roles for dag-processor and triggerer processes ([#679]).
99
- Added a note on webserver workers to the trouble-shooting section ([#685]).
10+
- Helm: Allow Pod `priorityClassName` to be configured ([#687]).
1011

1112
### Fixed
1213

@@ -24,6 +25,7 @@
2425
[#679]: https://github.com/stackabletech/airflow-operator/pull/679
2526
[#683]: https://github.com/stackabletech/airflow-operator/pull/683
2627
[#685]: https://github.com/stackabletech/airflow-operator/pull/685
28+
[#687]: https://github.com/stackabletech/airflow-operator/pull/687
2729

2830
## [25.7.0] - 2025-07-23
2931

deploy/helm/airflow-operator/templates/deployment.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,3 +95,6 @@ spec:
9595
tolerations:
9696
{{- toYaml . | nindent 8 }}
9797
{{- end }}
98+
{{- with .Values.priorityClassName }}
99+
priorityClassName: {{ . }}
100+
{{- end }}

0 commit comments

Comments
 (0)