diff --git a/.github/workflows/rocky8.yml b/.github/workflows/rocky8.yml index ce514947..950c1002 100644 --- a/.github/workflows/rocky8.yml +++ b/.github/workflows/rocky8.yml @@ -159,7 +159,7 @@ jobs: - name: Create new inventory hosts.yml with added hosts run: | - rm hosts.ini + rm hosts.yml touch hosts.yml echo "rke2_cluster:" > hosts.yml echo " children:" >> hosts.yml diff --git a/.github/workflows/ubuntu20.yml b/.github/workflows/ubuntu20.yml index 98e5334d..c2f1be3e 100644 --- a/.github/workflows/ubuntu20.yml +++ b/.github/workflows/ubuntu20.yml @@ -157,7 +157,7 @@ jobs: - name: Create new inventory hosts.yml with added hosts run: | - rm -f hosts.ini + rm -f hosts.yml touch hosts.yml echo "rke2_cluster:" > hosts.yml echo " children:" >> hosts.yml diff --git a/README.md b/README.md index 50483f38..20d0f805 100644 --- a/README.md +++ b/README.md @@ -82,7 +82,7 @@ If needed, you can also edit `inventory/my-cluster/group_vars/rke2_agents.yml` a Start provisioning of the cluster using the following command: ```bash -ansible-playbook site.yml -i inventory/my-cluster/hosts.ini +ansible-playbook site.yml -i inventory/my-cluster/hosts.yml ``` Tarball Install/Air-Gap Install diff --git a/ansible.cfg b/ansible.cfg index 8570c43b..43a4415d 100644 --- a/ansible.cfg +++ b/ansible.cfg @@ -1,7 +1,7 @@ [defaults] nocows = True roles_path = ./roles -inventory = ./inventory/my-cluster/hosts.ini +inventory = ./inventory/my-cluster/hosts.yml remote_tmp = $HOME/.ansible/tmp local_tmp = $HOME/.ansible/tmp