Add initial http01 solver support
This commit is contained in:
parent
427d3af40f
commit
7b88ba6245
1 changed files with 5 additions and 0 deletions
|
|
@ -16,6 +16,7 @@ spec:
|
||||||
dnsZones:
|
dnsZones:
|
||||||
- "{{ i.domain }}"
|
- "{{ i.domain }}"
|
||||||
{{ i.solver }}:
|
{{ i.solver }}:
|
||||||
|
{% if i.solver == "dns01" %}
|
||||||
{% if i.provider == "cloudflare" %}
|
{% if i.provider == "cloudflare" %}
|
||||||
cloudflare:
|
cloudflare:
|
||||||
email: "{{ i.email }}"
|
email: "{{ i.email }}"
|
||||||
|
|
@ -42,4 +43,8 @@ spec:
|
||||||
key: applicationSecret
|
key: applicationSecret
|
||||||
consumerKey: '{{ i.consumerKey }}'
|
consumerKey: '{{ i.consumerKey }}'
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{% elif i.solver == "http01" %}
|
||||||
|
ingress:
|
||||||
|
class: traefik
|
||||||
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue