I was able to use Let's Encrypt certificate for non-prod domain. But now want to use Digi Cert SSL certificate in Traefik v2 for production.
As per this documents https://docs.traefik.io/https/tls/ I need to have following configuration
# Dynamic configuration
[tls.stores]
[tls.stores.default]
[tls.stores.default.defaultCertificate]
certFile = "path/to/cert.crt"
keyFile = "path/to/cert.key"
[[tls.certificates]]
stores = ["default"]
and path/to/cert.crt
& path/to/cert.key
provided by Kubernetes Secret.
What would be the configuration for [certificatesResolvers]
?