From e9b8b593061fb30053a1efd5067c3872a5f8a323 Mon Sep 17 00:00:00 2001 From: Julien Riou Date: Sun, 18 May 2025 11:57:56 +0200 Subject: [PATCH 1/2] fix: Facts were failing at start Signed-off-by: Julien Riou --- ansible/site.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ansible/site.yml b/ansible/site.yml index c047d1b..c66dfa9 100644 --- a/ansible/site.yml +++ b/ansible/site.yml @@ -2,6 +2,7 @@ become: true hosts: - galene + gather_facts: false tasks: - name: Wait for infrastructure to be ready ansible.builtin.ping: @@ -12,6 +13,8 @@ ansible.builtin.apt: update_cache: true upgrade: full + retries: 30 + delay: 10 - name: Install galene become: true From 234b7c056cf2a5be3089eb0b9cf30369da30bd7e Mon Sep 17 00:00:00 2001 From: Julien Riou Date: Sun, 18 May 2025 11:59:07 +0200 Subject: [PATCH 2/2] feat: Ignore Ansible inventory Signed-off-by: Julien Riou --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 0dbe0d6..5fc2606 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ ansible/venv ansible/ssh_key ansible/group_vars +ansible/inventory tofu/clouds.yaml tofu/ovh.conf tofu/terraform.tfstate