This is a collection of Ansible-deployed workshop environments. Use it in combination with the student workbook content, from the repo at https://github.com/RedHatGov/redhatgov.github.io
When running the 2_load.yml playbook, execution fails twice when encountering the undefined variable beta. The complete files are attached, but to get around the issue, I modified 2 files:
name: RHEL 8 tasks
import_tasks: repos-rhel8.yml
when: not cloud_access and ansible_distribution == 'RedHat' and ansible_distribution_major_version == '8' and not beta|bool
AFTER
name: RHEL 8 tasks
import_tasks: repos-rhel8.yml
when: not cloud_access and ansible_distribution == 'RedHat' and ansible_distribution_major_version == '8'
When running the 2_load.yml playbook, execution fails twice when encountering the undefined variable beta. The complete files are attached, but to get around the issue, I modified 2 files:
../ansible_tower_aws/roles/ansible.tower/tasks/nodes_setup.yml
BEFORE
AFTER
../ansible_tower_aws/roles/subscription_manager/tasks/subscribe.yml
BEFORE
AFTER
load.error.txt load-2.error.txt