How do I check if Velero is installed in my cluster?

11/18/2019

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

1 Answer

11/18/2019
kubectl get pods --all-namespaces | grep velero 

That’s an easy place to start at least.

-- coderanger
Source: StackOverflow