Explorar el Código

add ingress fix role for utility

Grega Bremec hace 1 mes
padre
commit
2494c036c2
Se han modificado 1 ficheros con 17 adiciones y 0 borrados
  1. 17 0
      playbooks/pre-flight.yml

+ 17 - 0
playbooks/pre-flight.yml

@@ -78,4 +78,21 @@
       tags:
         - prep
         - auth
+
+# Some additional configuration for infra.
+- name: Ensure HAProxy on utility does not forward plaintext HTTP to OpenShift.
+  hosts: utility.lab.example.com
+  gather_subset: min
+  become: yes
+  tasks:
+    - include_role:
+        name: setup-ingress
+        apply:
+          tags:
+            - prep
+            - ingress
+      tags:
+        - prep
+        - ingress
+
 ...