I have deployed my application in Kubernetes. I have configured the cert manager and issuers to generate an ssl certificate for the specificsubdomain. It works fine. Now I want to generate the wildcard SSL certificate. For wildcard, ACME/letsencrypt use the dns01 challenge. My DNS provider is not on the list of supported DNS providers. My domain is hosted in dnsmadeeasy. How to complete the dns01 challenge to get an ssl certificate?
Asked
Active
Viewed 732 times
1

Sathiamoorthy
- 8,831
- 9
- 65
- 77

Akshay Gopani
- 473
- 4
- 16
-
If your dns provider is not listed then you will have to use the [webhook](https://cert-manager.io/docs/configuration/acme/dns01/webhook/). You will find more webhook solvers [here](https://github.com/topics/cert-manager-webhook). – sam thomas Jan 02 '22 at 09:47
-
my dns provider is not available in webhook solvers list. – Akshay Gopani Jan 02 '22 at 10:07
-
Check out [this](https://github.com/jetstack/cert-manager/issues/438) github issue thread and [this](https://github.com/go-acme/lego) repo. There is implementation for _dnsmadeeasy_ inside it. – sam thomas Jan 02 '22 at 17:17
-
https://go-acme.github.io/lego/dns/dnsmadeeasy/ Hope this helps – sam thomas Jan 02 '22 at 17:19
-
Hi @AkshayGopani, does the comment from the sam thomas helped you? – Mikolaj S. Jan 03 '22 at 17:38
-
No. Things share by Thomas is I know. I looking for complete implementation. – Akshay Gopani Jan 04 '22 at 08:17
-
2Did you try [`dnsmadeeasy-webhook` solution](https://github.com/k8s-at-home/charts/tree/master/charts/stable/dnsmadeeasy-webhook)? – Mikolaj S. Jan 05 '22 at 11:44
-
nope i will try. @MikolajS. – Akshay Gopani Jan 05 '22 at 15:40
-
Hi @Akshay Gopani, any news? – Mikolaj S. Jan 11 '22 at 12:54