gke-letsencrypt icon indicating copy to clipboard operation
gke-letsencrypt copied to clipboard

cert-manager v0.5.2 install broken on Helm v2.12.0

Open abevoelker opened this issue 6 years ago • 4 comments

Ran through this today after previous success (well, previous cert-manager bugs notwithstanding), and got the following error: https://github.com/jetstack/cert-manager/issues/1144

abevoelker avatar Dec 16 '18 07:12 abevoelker

+1 I have the same error installing with KinD.

alexellis avatar Dec 16 '18 22:12 alexellis

Looks like you might've installed the chart before? The other day I realized the Helm chart doesn't correctly uninstall the CRDs. But you can delete those CRDs manually and reinstall the chart.

If this is the issue you're seeing, please upvote: https://github.com/jetstack/cert-manager/issues/1152

ahmetb avatar Dec 16 '18 23:12 ahmetb

Nope, this happens on freshly-created clusters on first install.

abevoelker avatar Dec 16 '18 23:12 abevoelker

As for workarounds, couldn't downgrade to Helm 2.11 due to a Helm bug with helm reset

However as others in jetstack/cert-manager#1144 said, installing cert-manager 0.4.1 then upgrading worked okay:

$ helm del --purge cert-manager
$ helm install --name cert-manager --version v0.4.1 \
    --namespace kube-system stable/cert-manager
$ helm upgrade cert-manager stable/cert-manager

abevoelker avatar Dec 17 '18 23:12 abevoelker