skip to Main Content

Error: unable to build kubernetes objects from release manifest: unable to recognize "": no matches for kind "PodDisruptionBudget" in version "policy/v1beta1"

minikube version : v1.28.0
helm version: v3.5.4+g1b5edb6
OS: Ubuntu

I am trying to install milvus cluster database in kubernete using helm chart.

2

Answers


  1. Search for the file poddisruptionbudget.yml who should likely be located in folder ../cp-zookeeper/templates

    change

    apiVersion: policy/v1beta1 
    to 
    apiVersion: policy/v1
    
    Login or Signup to reply.
  2. It’s possible that you need to update your helm repo, to get a version of the helm chart that has been updated to work with the latest kubernetes. E.g. if you are dealing with elasticsearch, you might do helm repo update elastic.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search