-
Notifications
You must be signed in to change notification settings - Fork 10
satellite_firewall role #21
base: master
Are you sure you want to change the base?
Conversation
vars/satellite_common.yml
Outdated
- {proto: 'tcp', port: 5671} | ||
- {proto: 'tcp', port: 2375} | ||
- {proto: 'tcp', port: 5000} | ||
- {proto: 'tcp', port: 16500} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typo? 16509
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Typo. Fixed.
@@ -0,0 +1,66 @@ | |||
Role Name |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fill a role name
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed
I was thinking about using one of the OASIS roles named firewalld for RHEL7 only. Our Possible usage: - name: Open Satellite ports using firewalld (role)
include_role:
name: oasis-roles.firewalld
with_items:
- "{{ common_ports }}"
- "{{ satellite_ports }}"
- "{{ capsule_ports }}"
when:
- ansible_distribution == "RedHat"
- ansible_distribution_major_version|int >= 7 |
Is the |
Initial version of satellite_firewall role. Opens network ports required by Satellite 6 to work correctly, both using firewalld (RHEL7+) or iptables (RHEL6 and lower).