Initial commit of okd baremetal deploy. 93/13093/1
authorArnaldo Hernandez <arjuhe@gmail.com>
Thu, 27 Jun 2024 13:50:26 +0000 (08:50 -0500)
committerArnaldo Hernandez <arjuhe@gmail.com>
Thu, 27 Jun 2024 13:50:26 +0000 (08:50 -0500)
Issue-ID: INF-441
Change-Id: I92655f7d8e699708734bdffa06c1bbb1867f4a10
Signed-off-by: Arnaldo Hernandez <arjuhe@gmail.com>
.gitignore
okd/ansible.cfg
okd/requirements.yml

index 869e107..b95d739 100644 (file)
@@ -3,6 +3,7 @@
 /logs
 /rtp/
 /wrlinux-x/
+venv/
 
 # documentation
 .tox
@@ -10,3 +11,4 @@ docs/_build/*
 
 # editor
 .vscode
+rtp.code-workspace
\ No newline at end of file
index c8be80d..f755def 100644 (file)
@@ -1,7 +1,21 @@
 [defaults]
+host_key_checking = false
+inventory = ./inventory
 roles_path = ./roles
+library = library
 remote_tmp = /tmp
+playbook_dir = ./playbooks
+collections_paths = ./collections
+command_warnings = true
+ansible_managed = "This file is managed by Ansible - changes may be lost"
+retry_files_enabled = false
+forks = 8
+stdout_callback = yaml
+# callback_whitelist = debug,profile_tasks
+callbacks_enabled = timer, debug, profile_tasks
+#mail, profile_roles, collection_namespace.collection_name.custom_callback
 
 [privilege_escalation]
 become_method = sudo
 become_ask_pass = True
+
index e20467d..f70665f 100644 (file)
@@ -1,6 +1,9 @@
+---
 collections:
   - ansible.posix
   - ansible.utils
+  - containers.podman
+  - community.crypto
   - community.general
   - community.libvirt
   - kubernetes.core