Bläddra i källkod

add ingress fix role for utility

Grega Bremec 1 månad sedan
förälder
incheckning
2494c036c2
1 ändrade filer med 17 tillägg och 0 borttagningar
  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
+
 ...