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 cf7a330 commit 72b62acCopy full SHA for 72b62ac
ansible/roles/app/defaults/main.yaml
@@ -22,6 +22,9 @@ ess_ampq_url: SetMe
22
23
# The external port number streams are exposed on
24
ess_ws_port: 80
25
+# Deploy the ingress definition?
26
+# One of 'present' or 'absent'.
27
+ess_ingress_state: present
28
29
# Our image details
30
ess_image_owner: informaticsmatters
ansible/roles/app/tasks/deploy.yaml
@@ -52,4 +52,9 @@
52
- deployment
53
- service-internal
54
- service-ws
55
- - ingress
+
56
+- name: Deploy ingress ({{ ess_namespace }})
57
+ kubernetes.core.k8s:
58
+ definition: "{{ lookup('template', 'ingress.yaml.j2') }}"
59
+ wait: yes
60
+ when: ess_ingress_state == 'present'
0 commit comments