diff --git a/.circleci/config.yml b/.circleci/config.yml index dfc2fb9db..9e63d1784 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1081,15 +1081,17 @@ workflows: - eks_integration_tests: filters: branches: - only: + ignore: - staging + - master requires: - build_image - aks_integration_tests: filters: branches: - only: + ignore: - staging + - master requires: - build_image - integration_tests_operator_on_k8s: diff --git a/test/integration/kubernetes.spec.ts b/test/integration/kubernetes.spec.ts index f5508a75c..37602c735 100644 --- a/test/integration/kubernetes.spec.ts +++ b/test/integration/kubernetes.spec.ts @@ -99,9 +99,7 @@ test('deploy sample workloads', async () => { .createNamespace(argoNamespace) .then(() => kubectl.applyK8sYaml( - //TODO: We pin to a earlier version due to a bug in Argo Rollout, we will revert to latest once the bug is fixed. - // https://github.com/argoproj/argo-rollouts/issues/2568 - 'https://github.com/argoproj/argo-rollouts/releases/download/v1.3.2/install.yaml', + 'https://github.com/argoproj/argo-rollouts/releases/latest/download/install.yaml', argoNamespace, ), )