Grega Bremec 1 rok temu
commit
e39f913787
2 zmienionych plików z 35 dodań i 0 usunięć
  1. 6 0
      .gitignore
  2. 29 0
      inventory.yml

+ 6 - 0
.gitignore

@@ -0,0 +1,6 @@
+.DS_Store
+.*.sw?
+*.vim
+kubeconfig*
+kubeadmin*
+tmp*

+ 29 - 0
inventory.yml

@@ -0,0 +1,29 @@
+---
+# 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.10"
+    ocp_z: "4.10.3"
+    # Various AMQ versions.
+    amq_z: "7.11.0"
+    amq_ch: "7.11.x"
+
+    # 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
+...