We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d19acc commit 1a1ce7aCopy full SHA for 1a1ce7a
src/asset_files/challenge_templates/http.yaml.j2
@@ -24,6 +24,7 @@ metadata:
24
namespace: "rcds-{{ slug }}"
25
annotations:
26
app.kubernetes.io/managed-by: rcds
27
+ cert-manager.io/cluster-issuer: letsencrypt
28
spec:
29
ingressClassName: beavercds
30
rules:
@@ -38,8 +39,11 @@ spec:
38
39
name: "rcds-{{ slug }}-{{ pod.name }}-http"
40
port:
41
number: {{ p.internal }}
-
42
- tls:
43
- - hosts: [ "{{ p.expose.http }}.{{ domain }}" ]
44
- secretName: "rcds-tls-{{ p.expose.http }}.{{ domain }}"
45
{% endfor -%}
+
+ tls:
+ - hosts:
46
+ {%- for p in http_ports %}
47
+ - "{{ p.expose.http }}.{{ domain }}"
48
+ {% endfor -%}
49
+ secretName: "rcds-tls-{{ slug }}-{{ pod.name }}"
0 commit comments