From: Arnaldo Hernandez Date: Thu, 27 Jun 2024 13:50:26 +0000 (-0500) Subject: Initial commit of okd baremetal deploy. X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F93%2F13093%2F1;p=pti%2Frtp.git Initial commit of okd baremetal deploy. Issue-ID: INF-441 Change-Id: I92655f7d8e699708734bdffa06c1bbb1867f4a10 Signed-off-by: Arnaldo Hernandez --- diff --git a/.gitignore b/.gitignore index 869e107b..b95d7392 100644 --- a/.gitignore +++ b/.gitignore @@ -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 diff --git a/okd/ansible.cfg b/okd/ansible.cfg index c8be80da..f755defa 100644 --- a/okd/ansible.cfg +++ b/okd/ansible.cfg @@ -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 + diff --git a/okd/requirements.yml b/okd/requirements.yml index e20467d7..f70665fa 100644 --- a/okd/requirements.yml +++ b/okd/requirements.yml @@ -1,6 +1,9 @@ +--- collections: - ansible.posix - ansible.utils + - containers.podman + - community.crypto - community.general - community.libvirt - kubernetes.core