Add initial http01 solver support

This commit is contained in:
Adrien Reslinger 2021-04-15 23:27:28 +02:00
parent 427d3af40f
commit 7b88ba6245
Signed by: adrien
GPG key ID: DA7B27055C66D6DE

View file

@ -16,6 +16,7 @@ spec:
dnsZones:
- "{{ i.domain }}"
{{ i.solver }}:
{% if i.solver == "dns01" %}
{% if i.provider == "cloudflare" %}
cloudflare:
email: "{{ i.email }}"
@ -42,4 +43,8 @@ spec:
key: applicationSecret
consumerKey: '{{ i.consumerKey }}'
{% endif %}
{% elif i.solver == "http01" %}
ingress:
class: traefik
{% endif %}
{% endfor %}