浏览代码

add ingress fix role for utility

Grega Bremec 1 月之前
父节点
当前提交
2494c036c2
共有 1 个文件被更改,包括 17 次插入0 次删除
  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
+
 ...