Skip to content

Commit 3cb1b41

Browse files
stackable-botNickLarsenNZ
authored andcommitted
feat(helm): Allow Pod priorityClassName to be configured (#762)
* 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 <nick.larsen@stackable.tech>
1 parent 393327a commit 3cb1b41

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
@@ -8,6 +8,7 @@ All notable changes to this project will be documented in this file.
88

99
- Add a dedicated per-rolegroup `-metrics` Service, which can be used to get Prometheus metrics ([#748]).
1010
- Expose more Prometheus metrics, such as successful or failed bundle loads and information about the OPA environment ([#748]).
11+
- Helm: Allow Pod `priorityClassName` to be configured ([#762]).
1112

1213
### Changed
1314

@@ -23,6 +24,7 @@ All notable changes to this project will be documented in this file.
2324
[#748]: https://github.com/stackabletech/opa-operator/pull/748
2425
[#752]: https://github.com/stackabletech/opa-operator/pull/752
2526
[#754]: https://github.com/stackabletech/opa-operator/pull/754
27+
[#762]: https://github.com/stackabletech/opa-operator/pull/762
2628

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

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,3 +97,6 @@ spec:
9797
tolerations:
9898
{{- toYaml . | nindent 8 }}
9999
{{- end }}
100+
{{- with .Values.priorityClassName }}
101+
priorityClassName: {{ . }}
102+
{{- end }}

0 commit comments

Comments
 (0)