Skip to content

Commit 39f70b7

Browse files
committed
Update
1 parent 7b5ff86 commit 39f70b7

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

scripts/openshiftci-presubmit-all-tests.sh

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,37 @@ chmod 640 $TMP_DIR/kubeconfig
2525
export KUBECONFIG=$TMP_DIR/kubeconfig
2626

2727
# Run e2e test
28+
# make test-e2e
29+
30+
ROLLOUTS_TMP_DIR=$(mktemp -d)
31+
32+
cd $ROLLOUTS_TMP_DIR
33+
34+
# kubectl get namespaces
35+
36+
# kubectl get pods -A || true
37+
38+
# kubectl api-resources
39+
40+
git clone https://github.com/argoproj-labs/argo-rollouts-manager
41+
42+
#git clone https://github.com/jgwest/argo-rollouts-manager
43+
44+
cd "$ROLLOUTS_TMP_DIR/argo-rollouts-manager"
45+
46+
TARGET_ROLLOUT_MANAGER_COMMIT=b3e573f0e6ea3a5ec3eeba70ebb5d90e58efcd68
47+
48+
git checkout $TARGET_ROLLOUT_MANAGER_COMMIT
2849
make test-e2e
2950

51+
# Clean up old namespaces created by test
52+
# NOTE: remove this once this is handled by 'make test-e2e' in argo-rollouts-manager repo
53+
kubectl delete rolloutmanagers --all -n test-rom-ns-1
54+
55+
cd "$ROLLOUTS_TMP_DIR/argo-rollouts-manager"
56+
57+
SKIP_RUN_STEP=true hack/run-upstream-argo-rollouts-e2e-tests.sh
58+
59+
3060

3161

0 commit comments

Comments
 (0)