From 4085e16ccc190fa78355a4ee7676561c91eec1b1 Mon Sep 17 00:00:00 2001 From: Sharon Naftaly Date: Tue, 21 Feb 2023 16:41:28 +0200 Subject: [PATCH] Revert "test: use latest argo-rollouts installation" This reverts commit b20a6352bb718e72514ff1e118f86e0e8cbe8675. --- test/integration/kubernetes.spec.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/integration/kubernetes.spec.ts b/test/integration/kubernetes.spec.ts index 37602c735..bbe1ee775 100644 --- a/test/integration/kubernetes.spec.ts +++ b/test/integration/kubernetes.spec.ts @@ -99,7 +99,9 @@ test('deploy sample workloads', async () => { .createNamespace(argoNamespace) .then(() => kubectl.applyK8sYaml( - 'https://github.com/argoproj/argo-rollouts/releases/latest/download/install.yaml', + //TODO: We pin to a earlier version due to a bug in Argo Rollout, we will revert to latest once the bug fix is deployed + // to a new version of argo-rollouts https://github.com/argoproj/argo-rollouts/issues/2568 + 'https://github.com/argoproj/argo-rollouts/releases/download/v1.3.2/install.yaml', argoNamespace, ), )