-
Notifications
You must be signed in to change notification settings - Fork 26
Description
Hello,
When using the upstream JetStack Cert Manager, in case the customer has an internal DNS and a separate external DNS the DNS01 issuer cannot progress due to the TXT record never being validated on the internal DNS.
The issue can be helped by adding the following on the CSV for the JetStack Cert Manager:
spec:
containers:
- args:
....<some non related arguments here>....
- --dns01-recursive-nameservers="<resolver-ip>:53"
- --dns01-recursive-nameservers-only
Which will cause DNS resolution to use whatever DNS server we want for Cert Manager only, by replacing with values such as 8.8.8.8, etc. (the rest of the Cluster is unaffected).
However, looking at what seems possible in the IBM Cert Manager, there is apparently no way of customizing the Controller Pod arguments (they will get overwritten if we modify the Deployment as it is managed by the CertManager CRD).
Therefore requesting to evaluate incorporating such a feature.
For example, adding to the resources of the Cert Manager CRD spec.DNS01RecursiveNameServers and spec.DNS01RecursiveNameServesOnly so if they have values then proper arguments will be added to the Deployment and passed to the Controller Pod Image on execution.
Or even a flexible way to pass additional arguments to the Pods on an upstream definition that doesn't get overwritten.
Thanks in advance,
Julio.