dennismdejong opened a new pull request, #11698: URL: https://github.com/apache/gravitino/pull/11698
### What changes were proposed in this pull request? Add `priorityClassName` support to all three Gravitino Helm charts (gravitino, gravitino-iceberg-rest-server, gravitino-lance-rest-server). ### Why are the changes needed? The Helm charts do not expose `priorityClassName` on the pod spec. On shared clusters where batch jobs compete with production services, Kubernetes uses PriorityClass to decide which pods to evict. Without this, Gravitino pods have no priority tier and can be evicted by lower-priority workloads during resource pressure, causing unexpected downtime for production catalog services. Fix: #10865 ### Does this PR introduce _any_ user-facing change? Yes — adds a new `priorityClassName` value to all three charts: - `dev/charts/gravitino/values.yaml` - `dev/charts/gravitino-iceberg-rest-server/values.yaml` - `dev/charts/gravitino-lance-rest-server/values.yaml` Default is empty string (`""`), which omits the field — fully backward compatible. ### How was this patch tested? - `helm lint` on all 3 charts — passed - `helm template` — verified `priorityClassName` renders when set, omitted when empty - `helm unittest` — added test cases for all 3 charts (set + omitted scenarios): ``` gravitino: 33 passed, 33 total iceberg-rest: 24 passed, 24 total lance-rest: 24 passed, 24 total ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
