firewall.yml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. ---
  2. - when: r_openshift_master_firewall_enabled | bool and not r_openshift_master_use_firewalld | bool
  3. block:
  4. - name: Add iptables allow rules
  5. os_firewall_manage_iptables:
  6. name: "{{ item.service }}"
  7. action: add
  8. protocol: "{{ item.port.split('/')[1] }}"
  9. port: "{{ item.port.split('/')[0] }}"
  10. when:
  11. - item.cond | default(True)
  12. with_items: "{{ r_openshift_master_os_firewall_allow }}"
  13. - name: Remove iptables rules
  14. os_firewall_manage_iptables:
  15. name: "{{ item.service }}"
  16. action: remove
  17. protocol: "{{ item.port.split('/')[1] }}"
  18. port: "{{ item.port.split('/')[0] }}"
  19. when:
  20. - item.cond | default(True)
  21. with_items: "{{ r_openshift_master_os_firewall_deny }}"
  22. - when: r_openshift_master_firewall_enabled | bool and r_openshift_master_use_firewalld | bool
  23. block:
  24. - name: Add firewalld allow rules
  25. firewalld:
  26. port: "{{ item.port }}"
  27. permanent: true
  28. immediate: true
  29. state: enabled
  30. when:
  31. - item.cond | default(True)
  32. with_items: "{{ r_openshift_master_os_firewall_allow }}"
  33. - name: Remove firewalld allow rules
  34. firewalld:
  35. port: "{{ item.port }}"
  36. permanent: true
  37. immediate: true
  38. state: disabled
  39. when:
  40. - item.cond | default(True)
  41. with_items: "{{ r_openshift_master_os_firewall_deny }}"