Browse Source

pre-flight check, version bump

Grega Bremec 3 years ago
parent
commit
c3a1575fdd
2 changed files with 13 additions and 3 deletions
  1. 4 3
      inventory
  2. 9 0
      pre-flight.yml

+ 4 - 3
inventory

@@ -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
 

+ 9 - 0
pre-flight.yml

@@ -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
+...