inventory.yml 641 B

1234567891011121314151617181920212223242526
  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. # Operator that needs to be installed.
  16. op_cat: redhat-operators
  17. op_pkg: openshift-pipelines-operator-rh
  18. op_chn: latest
  19. op_nsp: openshift-operators
  20. desired_csv: openshift-pipelines-operator-rh.v1.15.1
  21. # The list of OpenShift clusters check-env will try to connect to.
  22. clusters:
  23. - ocp4
  24. ...