---
# 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.12"
    ocp_z: "4.12.10"

    # We need this operator CSV. TODO reflect reality
    op_cat: redhat-operators
    op_pkg: compliance
    desired_csv: compliance-operator.v2.4.2
    removed_source: do380-catalog-redhat

    # 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
...