From f8729ae52304a77b8d4f80c19cdde026c680ff06 Mon Sep 17 00:00:00 2001 From: Gabriela Cervantes Date: Thu, 25 Jul 2024 20:33:07 +0000 Subject: [PATCH] tests.e2e.ansible: Fix curl command to increase github rate limiting issues This PR fixes the correct curl command to increase the threshold for rate limiting while installing kustomize. Signed-off-by: Gabriela Cervantes --- tests/e2e/ansible/install_test_deps.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/ansible/install_test_deps.yaml b/tests/e2e/ansible/install_test_deps.yaml index 5652b108..a9d87492 100644 --- a/tests/e2e/ansible/install_test_deps.yaml +++ b/tests/e2e/ansible/install_test_deps.yaml @@ -39,7 +39,7 @@ ignore_errors: yes - name: Install kustomize shell: | - curl -s --retry 3 --retry-delay 10 -u ${USER}:${GITHUB_TOKEN} "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh" | bash + curl -s --retry 3 --retry-delay 10 -u $USER:$GITHUB_TOKEN "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh" | bash cp -f ./kustomize /usr/local/bin args: creates: /usr/local/bin/kustomize