mongodb / helm-charts

Apache License 2.0
99 stars 92 forks source link

Unable to install community operator through Helm #115

Closed richardmatthewsdev closed 2 years ago

richardmatthewsdev commented 2 years ago

Hey,

I have been unable to install the mongodb operator through Helm, when I run:

helm install mongodb-operator mongodb-helm-charts/community-operator --version 0.7.2 --namespace staging

I get:

Error: INSTALLATION FAILED: unable to build kubernetes objects from release manifest: [unable to recognize "": no matches for kind "Certificate" in version "cert-manager.io/v1", unable to recognize "": no matches for kind "Issuer" in version "cert-manager.io/v1"]

Any help is much appreciated!

Thanks,

priyolahiri commented 2 years ago

Do you have cert-manager installed on the cluster? If not, you can use --set resource.tls.useCertManager=false to skip cert manager integration.

richardmatthewsdev commented 2 years ago

Hey @priyolahiri, thanks for your reply! No I don't have cert manager installed on the cluster. I will try and skip it :).

richardmatthewsdev commented 2 years ago

Great that fixes it, thank you!