Ce contenu n'est pas disponible dans la langue sélectionnée.
Chapter 7. Private Automation Hub
Automation Hub is the central place for the certified collections. It functions as the main source of trusted, tested and supported content. Private automation hub provides automation developers the ability to collaborate and publish their own automation content and streamline delivery of Ansible code within their organization.
Private automation hub in Ansible Automation Platform 2.1 primarily delivers support for automation execution environments. Execution environments are a standardized way to define, build and distribute the environments that the automation runs in. In a nutshell, automation execution environments are container images that allow for easier administration of Ansible by the platform administrator.
7.1. Requirements for a High Availability Automation Hub Copier lienLien copié sur presse-papiers!
7.1.1. Enabling firewall services Copier lienLien copié sur presse-papiers!
As part of a highly available automation hub environment, due to the requirement of using a shared filesystem, the following firewall services should be enabled to ensure successful mounting of the filesystem as shown in the next section.
On each automation hub node, as the ansible user:
Ensure the following
firewalldservices (nfs,mountd,rpc-bind) are enabled.$ sudo firewall-cmd --zone=public --add-service=nfs $ sudo firewall-cmd --zone=public --add-service=mountd $ sudo firewall-cmd --zone=public --add-service=rpc-bindReload
firewalldfor changes to take effect.$ sudo firewall-cmd --reloadVerify the
firewalldservices are enabled$ sudo firewall-cmd --get-services