@@ -4,9 +4,10 @@ bastion.lab.example.com ansible_user=root
# Example: override variables here.
[all:vars]
-ocp_maj = 4.9
-ocp_z = 4.9.11
-rhcos_ver = 4.9.0
+ocp_maj = "4.10"
+ocp_z = "4.10.4"
+rhcos_ver = "4.10.3"
+acs_maj = 3.69
cinst_ver = latest
butane_ver = latest
@@ -0,0 +1,9 @@
+---
+- name: Pre-flight checks only.
+ hosts: workstation.lab.example.com
+ gather_facts: no
+ become: no
+ roles:
+ - role: check-env
+ tags: check
+...