inventory.yml 568 B

12345678910111213141516171819202122232425
  1. ---
  2. # A simplistic inventory for the classroom VMs.
  3. all:
  4. hosts:
  5. workstation.lab.example.com:
  6. ansible_connection: local
  7. utility.lab.example.com:
  8. ansible_user: lab
  9. bastion.lab.example.com:
  10. ansible_user: root
  11. vars:
  12. # OpenShift versions.
  13. ocp_maj: "4.14"
  14. ocp_z: "4.14.0"
  15. # Operator that needs to be installed.
  16. op_cat: redhat-operators
  17. op_pkg: amq-streams
  18. op_chn: stable
  19. desired_csv: amqstreams.v2.7.0-4
  20. # The list of OpenShift clusters check-env will try to connect to.
  21. clusters:
  22. - ocp4
  23. ...