Training Course for Ansible Automation Platform
This project is maintained by ericzji
The github.com/ansible/workshops
contains a provisioner provision_lab.yml
, which is an automated lab setup for Ansible training on AWS (Amazon Web Services). Set the workshop_type
variable below to provision the corresponding workshop.
Workshop | Deck | Exercises | Workshop Type Var |
---|---|---|---|
Ansible Red Hat Enterprise Linux Workshop | Deck | Exercises | workshop_type: rhel |
Ansible Network Automation Workshop | Deck | Exercises | workshop_type: networking |
Ansible F5 Workshop | Deck | Exercises | workshop_type: f5 |
For One Time Setup - click here
-e @extra_vars.yml
---
# region where the nodes will live
ec2_region: us-east-1
# name prefix for all the VMs
ec2_name_prefix: TESTWORKSHOP
# creates student_total of workbenches for the workshop
student_total: 2
# Set the right workshop type, like networking, rhel or f5 (see above)
workshop_type: rhel
#OPTIONAL VARIABLES
# password for Ansible control node, defaults to ansible
admin_password: ansible
# creates AWS S3 website for ec2_name_prefix.workshop_dns_zone
create_login_page: true
# Sets the Route53 DNS zone to use for the S3 website
workshop_dns_zone: rhdemo.io
# automatically installs Tower to control node
towerinstall: true
# automatically licenses Tower if license is provided
autolicense: true
# install xrdp with xfce for graphical interface
#xrdp: true
If you want to license it you must copy a license called tower_license.json into this directory. If you do not have a license already please request one using the Workshop License Link.
For more extra_vars examples, look at the following:
Run the playbook:
ansible-playbook provision_lab.yml -e @extra_vars.yml
Login to the EC2 console and you should see instances being created like:
`TESTWORKSHOP-student1-ansible`
create_login_page: true
is enabled in your extra_vars file,
there will be a website ec2_name_prefix.workshop_dns_zone (e.g. TESTWORKSHOP.rhdemo.io)workshop_dns_zone
in your extra_vars.yml
file.The teardown_lab.yml
playbook deletes all the training instances as well as local inventory files.
To destroy all the EC2 instances after training is complete:
Run the playbook:
ansible-playbook teardown_lab.yml -e @extra_vars.yml
For frequently asked questions see the FAQ
The provision_lab.yml
playbook creates a work bench for each student, configures them for password authentication, and creates an inventory file for each user with their IPs and credentials. An instructor inventory file is also created in the current directory which will let the instructor access the nodes of any student. This file will be called instructor_inventory.txt
What does the AWS provisioner take care of automatically?
If you used xrdp: true
you will the ability to remote desktop to the control node.
The provisioner has the ability to install xrdp with xfce for graphical interface. The xrdp application is a an open source remote desktop protocol(rdp) server. Xfce is a lightweight desktop environment for UNIX-like operating systems. It aims to be fast and low on system resources, while still being visually appealing and user friendly.
Please file issues on Github. Please fill out all required information. Your issue will be closed if there if you skip required information in the Github issues template.