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/02/25 15:53:46 UTC

[GitHub] [pulsar-helm-chart] rmyates commented on pull request #203: Change default podManagementPolicy to Parallel for Zookeeper

rmyates commented on pull request #203:
URL: https://github.com/apache/pulsar-helm-chart/pull/203#issuecomment-1050973199


   Note for future googlers, this change will break a helm chart upgrade if you installed the chart before this change due to podManagementPolicy in a StatefulSet being an immutable field.
   
   > Error: UPGRADE FAILED: cannot patch "pulsar-zookeeper" with kind StatefulSet: StatefulSet.apps "pulsar-zookeeper" is invalid: spec: Forbidden: updates to statefulset spec for fields other than 'replicas', 'template', and 'updateStrategy' are forbidden
   
   Set it back to the previous version with the below in your custom values file which I don't think does any harm for existing installs
   
   ```
   zookeeper:
     # Changed to Parallel by default in https://github.com/apache/pulsar-helm-chart/pull/203
     # However since we installed the chart prior to this and this field is immutable
     # set it back to the old value.
     podManagementPolicy: OrderedReady
   ```


-- 
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