##Get the tar to /root
wget https://releases.ansible.com/ansible-tower/setup-bundle/ansible-tower-setup-bundle-latest.el8.tar.gz
## Make Sure your hosts file has it self in it
vi /etc/hosts
192.168.1.5 localhost myservername myservername.fqdn
##untar it
tar xzvf ansible-tower-setup-bundle-latest.el8.tar.gz
##get in the directory
cd ansible-tower-setup-bundle-n.n.n.n/
##edit the inventory file
vi inventory
##EDIT
[automationcontroller]
vmyservername.fqdn ansible_connection=local
[all:vars]
admin_password=’PASSWORD_GOES_HERE’
pg_password=’PASSWORD_GOES_HERE’
automationhub_admin_password=’PASSWORD_GOES_HERE’
automationhub_pg_password=’PASSWORD_GOES_HERE’
#save
:wq
##Attach the subscription
# subscription-manager list –available –all | grep “Ansible Automation Platform” -B 3 -A 6
subscription-manager attach –pool=<pool_id>
##run setup
./setup.sh
##################################################
NOTES:
18. Bubblewrap functionality and variables — Ansible Tower Administration Guide v3.8.3
##FOR Ansible Automation Platform:
sudo vi /etc/sysctl.d/52-app.conf
#added for AAP
user.max_user_namespaces=15000
## sudo sysctl –system or reboot
##To Verify:
cat /proc/sys/user/max_user_namespaces
or
dzdo sysctl user.max_user_namespaces=15000
user.max_user_namespaces = 15000












You must be logged in to post a comment.