--- # 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.18" ocp_z: "4.18.6" # These are the tools we need, some also need to be downloaded. tools: oc: final_name: /usr/local/bin/oc completion: yes completion_file: oc # This is the package manifest we need. vrfy_cat: redhat-operators vrfy_pkg: amq-streams vrfy_chn: amq-streams-2.8.x vrfy_csv: amqstreams.v2.8.0-0 removed_operators: - sub_nspc: openshift-operators sub_name: openshift-pipelines-operator csv_name: openshift-pipelines-operator-rh.v1.18.1 pre_cleanup: - kind: openshiftpipelinesascodes apiv: operator.tekton.dev/v1alpha1 - kind: tektonaddons apiv: operator.tekton.dev/v1alpha1 - kind: tektonchains apiv: operator.tekton.dev/v1alpha1 - kind: tektonconfigs apiv: operator.tekton.dev/v1alpha1 - kind: tektonhubs apiv: operator.tekton.dev/v1alpha1 - kind: tektoninstallersets apiv: operator.tekton.dev/v1alpha1 - kind: tektonpipelines apiv: operator.tekton.dev/v1alpha1 - kind: tektonresults apiv: operator.tekton.dev/v1alpha1 - kind: tektontriggers apiv: operator.tekton.dev/v1alpha1 add_cleanup: - openshiftpipelinesascodes.operator.tekton.dev - tektonaddons.operator.tekton.dev - tektonchains.operator.tekton.dev - tektonconfigs.operator.tekton.dev - tektonhubs.operator.tekton.dev - tektoninstallersets.operator.tekton.dev - tektonpipelines.operator.tekton.dev - tektonresults.operator.tekton.dev - tektontriggers.operator.tekton.dev added_operators: - catalog: redhat-operators package: amq-streams channel: amq-streams-2.8.x namespace: amq-streams desired_csv: amqstreams.v2.8.0-0 og_namespaces: [] approval: Manual # The list of OpenShift clusters check-env will try to connect to. clusters: - ocp4 ...