0

There is a Kubernetes cluster that I am not really familiar with. I need to set up backups with Velero. It is possible that velero has been installed on the cluster by someone else. How do I make sure it has or has not been previously installed before I install it?

BanzaiTokyo
  • 1,376
  • 4
  • 17
  • 33
  • It depends on what you expect on how Velero be installed on the cluster. Do you expect it is installed using `helm` chart? or other ways? – Shudipta Sharma Nov 18 '19 at 16:23

1 Answers1

1
kubectl get pods --all-namespaces | grep velero 

That’s an easy place to start at least.

coderanger
  • 52,400
  • 4
  • 52
  • 75