File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed
Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,37 @@ chmod 640 $TMP_DIR/kubeconfig
2525export 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
2849make 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
You can’t perform that action at this time.
0 commit comments