crio_firewall.yml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. ---
  2. - when: r_crio_firewall_enabled | bool and not r_crio_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: item.cond | default(True)
  11. with_items: "{{ r_crio_os_firewall_allow }}"
  12. - name: Remove iptables rules
  13. os_firewall_manage_iptables:
  14. name: "{{ item.service }}"
  15. action: remove
  16. protocol: "{{ item.port.split('/')[1] }}"
  17. port: "{{ item.port.split('/')[0] }}"
  18. when: item.cond | default(True)
  19. with_items: "{{ r_crio_os_firewall_deny }}"
  20. - when: r_crio_firewall_enabled | bool and r_crio_use_firewalld | bool
  21. block:
  22. - name: Add firewalld allow rules
  23. firewalld:
  24. port: "{{ item.port }}"
  25. permanent: true
  26. immediate: true
  27. state: enabled
  28. when: item.cond | default(True)
  29. with_items: "{{ r_crio_os_firewall_allow }}"
  30. - name: Remove firewalld allow rules
  31. firewalld:
  32. port: "{{ item.port }}"
  33. permanent: true
  34. immediate: true
  35. state: disabled
  36. when: item.cond | default(True)
  37. with_items: "{{ r_crio_os_firewall_deny }}"