1234567891011121314151617181920212223242526272829303132 |
- ---
- # A simplistic inventory for the classroom VMs.
- all:
- hosts:
- workstation.lab.example.com:
- ansible_connection: local
- utility.lab.example.com:
- ansible_user: lab
- bastion.lab.example.com:
- ansible_user: root
- vars:
- # OpenShift versions.
- ocp_maj: "4.14"
- ocp_z: "4.14.12"
- # These are the tools we need, some also need to be downloaded.
- tools:
- oc:
- final_name: /usr/local/bin/oc
- completion: yes
- completion_file: oc
- # This is the package manifest we need.
- vrfy_cat: redhat-operators
- vrfy_pkg: amq-streams
- vrfy_csv: amqstreams.v2.8.0-0
- # The list of OpenShift clusters check-env will try to connect to.
- clusters:
- - ocp4
- ...
|