velero helm install fails #3693
-
I am trying to install velero using helm in azure kubernetes service and i get below error message. command used to install Running velero backup-location get and velero snapshot-location get throws velero version i am using is v1.3.2 and plugin version is velero/velero-plugin-for-microsoft-azure:v1.0.1. How to fix this ? kubernetes version : 1.19.7 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 16 replies
-
Hi @thulasidassrinivasan. This sounds like the CRDs for Velero have not been installed. Can you run I'm not an expert on Helm, but I wonder if the CRDs are not being installed due to the command you are using. Are there any other charts under your Thanks! |
Beta Was this translation helpful? Give feedback.
Hi @thulasidassrinivasan. This sounds like the CRDs for Velero have not been installed. Can you run
kubectl get crds
and verify that the output contains a number of CRDs withvelero.io
in the name?I'm not an expert on Helm, but I wonder if the CRDs are not being installed due to the command you are using. Are there any other charts under your
charts/
directory? Please review our documentation on how to install the Helm chart as there are some differences that may impact how the resulting chart is installed: https://github.com/vmware-tanzu/helm-charts/tree/main/charts/velero#installing-the-velero-serverThanks!