Dieser Inhalt ist in der von Ihnen ausgewählten Sprache nicht verfügbar.
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 Link kopierenLink in die Zwischenablage kopiert!
7.1.1. Enabling firewall services Link kopierenLink in die Zwischenablage kopiert!
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
firewalld
services (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-bind
$ sudo firewall-cmd --zone=public --add-service=nfs $ sudo firewall-cmd --zone=public --add-service=mountd $ sudo firewall-cmd --zone=public --add-service=rpc-bind
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Reload
firewalld
for changes to take effect.sudo firewall-cmd --reload
$ sudo firewall-cmd --reload
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Verify the
firewalld
services are enabledsudo firewall-cmd --get-services
$ sudo firewall-cmd --get-services
Copy to Clipboard Copied! Toggle word wrap Toggle overflow