1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- ---
- # 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_host: 172.25.250.254
- ansible_user: root
- vars:
- # OpenShift versions.
- ocp_maj: "4.16"
- ocp_z: "4.16.2"
- # Operators that need to be (re)installed.
- #
- # The first item in the list is also used for checking whether catalog(s)
- # were recreated successfully.
- added_operators:
- - catalog: redhat-operators
- package: metallb-operator
- channel: stable
- namespace: metallb-system
- desired_csv: metallb-operator.v4.16.0-202507221936
- og_namespaces: []
- # Some cleanup here.
- removed_operators:
- - sub_nspc: openshift-cnv
- sub_name: kubevirt-hyperconverged
- csv_kill: yes
- csv_name: kubevirt-hyperconverged-operator.v4.16.1
- nsp_kill: yes
- pre_cleanup:
- - kind: hyperconverged
- apiv: hco.kubevirt.io/v1beta1
- nspc: openshift-cnv
- wait_for_gone: yes
- wait_for_sec: 600
- add_cleanup:
- - name: aaqs.aaq.kubevirt.io
- - name: cdis.cdi.kubevirt.io
- - label: operators.coreos.com/kubevirt-hyperconverged.openshift-cnv
- # The list of OpenShift clusters check-env will try to connect to.
- clusters:
- - ocp4
- ...
|