How to Successfully Install Cert-Manager on GKE Autopilot?

0
5
Asked By TechSavant42 On

I'm having trouble deploying cert-manager in a GKE Autopilot cluster using the helm chart, and despite searching online, I haven't found a solution. I use the following command to deploy it:

helm install
cert-manager oci://quay.io/jetstack/charts/cert-manager
--version v1.19.4
--namespace cert-manager
--create-namespace
--set crds.enabled=true
--set startupapicheck.timeout=10m
--set webhook.timeoutSeconds=30

While the deployment process seems fine, the startupapicheck job fails with an error indicating a problem with the webhook certificate. It says it can't verify the certificate and mentions a failure during the webhook call. I came across suggestions to switch to HTTP instead of HTTPS after deployment, but that feels like a hack to get it working. Any advice would be appreciated—I'm stuck and it's really affecting my workflow!

1 Answer

Answered By K8sNinja99 On

Have you checked out the suggested workaround on the cert-manager website? They have specific guidance for GKE Autopilot compatibility that might help you out.

TechSavant42 -

That actually worked! I missed that detail before since I wasn't seeing those specific error messages. Thanks for pointing it out!

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.