Cert Manager app fails to install properly because of an incorrect docker image tag
stabai opened this issue · 0 comments
stabai commented
Category:
Kubernetes apps
Type:
- Bug
- Feature Request
- Process
When using Click to Deploy's installer for Cert Manager, one of the components fails to start up properly after installation. After investigating the issue, I saw that the reason was that it was failing to pull the image quay.io/jetstack/cert-manager-acmesolver:1.7.2
. It should actually have a v
at the front of the label, before the version number: quay.io/jetstack/cert-manager-acmesolver:v1.7.2
. Editing it manually to make this change fixed the issue for me.