younsl opened a new pull request, #200: URL: https://github.com/apache/superset-kubernetes-operator/pull/200
## Summary This PR adds a `resizePolicy` value to the operator Helm chart, rendered on the manager container directly below `resources`. On clusters where in-place pod vertical scaling is available, setting `restartPolicy: NotRequired` per resource lets `resources` changes apply in place without recreating the manager pod, avoiding a leader-election handoff and reconcile gap on every resource tuning. The value defaults to an empty list, so existing installs render identically. ## Details - `values.yaml`: new `resizePolicy: []` value placed right below `resources`, with a commented example for cpu/memory `NotRequired`. - `templates/deployment.yaml`: renders `resizePolicy` on the manager container when set. - `values.schema.json`: schema entry validating `resourceName` (`cpu`/`memory`) and `restartPolicy` (`NotRequired`/`RestartContainer`). Verified with `make helm-lint` and `helm template` (both default and populated values). -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
