123456789101112131415161718192021222324252627282930 |
- ---
- # 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.10"
- ocp_z: "4.10.3"
- # Various AMQ versions.
- eap_v: "7.4"
- eap_z: "7.4.12"
- eap_ch: "stable"
- # These are the tools we need, some also need to be downloaded.
- tools:
- oc:
- final_name: /usr/bin/oc
- completion: yes
- completion_file: oc
- # The list of OpenShift clusters check-env will try to connect to.
- clusters:
- - ocp4
- ...
|