You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@pulsar.apache.org by GitBox <gi...@apache.org> on 2022/10/06 06:44:55 UTC

[GitHub] [pulsar-helm-chart] relief-melone commented on issue #289: Support for kubernetes 1.25

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-unsubscribe@pulsar.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org