From 52b7227f19c811aec177fbe97e8f69db89da941c Mon Sep 17 00:00:00 2001
From: kaiyou <dev@kaiyou.fr>
Date: Fri, 1 Dec 2023 21:01:54 +0100
Subject: [PATCH] Fix some typos

---
 .gitlab-ci.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index feaec5b..4364040 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -31,7 +31,7 @@ compile:
   variables:
     # The ansible vault only contains secret variables, cluster config itself
     # is set from the documentation inventory
-    ANSIBLE_ARGS: -i .ci-vault -i docs/inventory_cloud.yaml --vault-password-file /tmp/vault -e node_prefix=ci-$CI_JOB_ID
+    ANSIBLE_ARGS: -i .ci-vault -i docs/inventory-cloud.yaml --vault-password-file /tmp/vault -e node_prefix=ci-$CI_JOB_ID
 
 upload:
   stage: test
@@ -57,6 +57,6 @@ test-cluster:
         - debian12
   script:
     - ansible-playbook $ANSIBLE_ARGS ansible/deploy.yaml -e cloud_provider=$PROVIDER -e image=$IMAGE
-    - ansible-playbook $ANSIBLE_ARGS ansible/test_podinfo.yaml
+    - ansible-playbook $ANSIBLE_ARGS ansible/test_podinfo.yaml -e cloud_provider=$PROVIDER -e image=$IMAGE
   after_script:
-    - ansible-playbook $ANSIBLE_ARGS ansible/cleanup.yaml
+    - ansible-playbook $ANSIBLE_ARGS ansible/cleanup.yaml -e cloud_provider=$PROVIDER -e image=$IMAGE
-- 
GitLab