relief-melone commented on issue #289: URL: https://github.com/apache/pulsar-helm-chart/issues/289#issuecomment-1269425300
Fix should be straight forward. As workaround you can just disable the policy by ```yaml bookie: pdb: usePolicy: false ``` In the chart as PodDisruptionBudget has been moved out of beta and has been stable since v1.21 the chart should look something like this ```yaml {{- if semverCompare ">=1.21" .Capabilities.KubeVersion.GitVersion }} apiVersion: policy/v1 {{- else }} apiVersion: policy/v1beta1 {{- end }} kind: PodDisruptionBudget ``` -- 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: dev-unsubscr...@pulsar.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org