Chapter 3. Private automation hub
Ansible automation hub is the central repository place for the certified collections, and functions as the main source of trusted, tested and supported content.
With private automation hub, automation developers can collaborate and publish their own automation content and deliver Ansible code more easily within their organization. It is also the central repository for Ansible validated content, which is not supported, but is trusted and tested by Red Hat and our partners.
3.3. Enabling firewall services
Because of the requirement of using a shared filesystem as part of a highly available Ansible automation hub environment, the following firewall services must be enabled to ensure that the filesystem is successfully mounted.
On each Ansible automation hub node, you must:
Ensure the following
firewalld
services (nfs
,mountd
,rpc-bind
) are enabled.# firewall-cmd --zone=public --add-service=nfs # firewall-cmd --zone=public --add-service=mountd # firewall-cmd --zone=public --add-service=rpc-bind
Reload
firewalld
for changes to take effect.# firewall-cmd --reload
Verify the
firewalld
services are enabled.# firewall-cmd --get-services