SSL certs #24
-
Hello, hope you are having a great day. I was going through the code, and i'm trying to understand how SSL works. I know that is using letsencrypt, and i think i have everything correctly configured. But when i access the site, i'm still having the fake cert Kubernetes Ingress Controller Fake Certificate. So my question is, beside deploying everything and running the github actions. Should i be doing any extra step in order to make SSL works? Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
Cookiecutter uses this drop-in k8s solution for ssl: https://cert-manager.io/ |
Beta Was this translation helpful? Give feedback.
-
ok. For trouble shooting purposes, a couple more screens in k9s that you can investigate are: orders (orders.acme.cert-manager.io ) and CertificateRequests (cert-manager.io/v1/certificaterequests). in cases where either an ssl cert has expired, or simply has not issued like in your case, i've been able to find good diagnostics from both of these screens. The last time i had to trouble shoot a problem like yours, the root cause was that the SOA records in Route53 for the root domain where incorrect. that is, the root problem was not actually related to cert-manager at all. |
Beta Was this translation helpful? Give feedback.
-
So the issue was that i had configured the hostedZoneID for the root domain instead of the environment domain like @lpm0073 said. |
Beta Was this translation helpful? Give feedback.
So the issue was that i had configured the hostedZoneID for the root domain instead of the environment domain like @lpm0073 said.