1

I've been following this tutorial for setting up dremio with k8s: https://www.dremio.com/tutorials/python-dremio-and-kubernetes/

when attempting to install using charts in https://github.com/dremio/dremio-cloud-tools/, I get the following error message:

Error: release mean-waterbuffalo failed: poddisruptionbudgets.policy "zk-pdb" already exists

What does this mean and how should one go about resolving it?

k8ask
  • 13
  • 3

2 Answers2

1

Check the PDB using:

kubectl get poddisruptionbudgets zk-pdb

If found, delete it with:

kubectl delete poddisruptionbudgets zk-pdb
Lewis
  • 4,285
  • 1
  • 23
  • 36
P Ekambaram
  • 15,499
  • 7
  • 34
  • 59
  • unfortunately more errors of the same kind appear: `configmaps "dremio-config" already exists` – k8ask Jul 13 '20 at 09:56
1

After you use helm install to install a chart first time and you want to reinstall it again for some reason then before running the helm install you can clean up the old installation using helm uninstall

Alternatively if you intend just to upgrade an existing chart installation with some changes you can use helm upgrade

Arghya Sadhu
  • 41,002
  • 9
  • 78
  • 107
  • I am facing the same issue by using `helm upgrade --install` which basically install or upgrade the charts. – Donatello Dec 09 '20 at 16:17