inventory.yml 733 B

1234567891011121314151617181920212223242526272829303132
  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.12"
  15. # These are the tools we need, some also need to be downloaded.
  16. tools:
  17. oc:
  18. final_name: /usr/local/bin/oc
  19. completion: yes
  20. completion_file: oc
  21. # This is the package manifest we need.
  22. vrfy_cat: redhat-operators
  23. vrfy_pkg: amq-streams
  24. vrfy_csv: amqstreams.v2.8.0-0
  25. # The list of OpenShift clusters check-env will try to connect to.
  26. clusters:
  27. - ocp4
  28. ...