We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b512d26 commit 227aaf4Copy full SHA for 227aaf4
node/tests/k8st/infra/build-operator.sh
@@ -4,7 +4,11 @@
4
# in the ST and e2e tests in this repo.
5
6
# Clone the repository if needed.
7
-git clone --depth=1 https://github.com/tigera/operator -b ${BRANCH:-master}
+set -e
8
+REPO=${REPO:-tigera/operator}
9
+BRANCH=${BRANCH:-master}
10
+echo "Cloning https://github.com/${REPO} @ ${BRANCH}"
11
+git clone --depth=1 https://github.com/${REPO} -b ${BRANCH} operator
12
13
# Modify the versions that are in-use to match our locally built images.
14
pushd operator
@@ -21,3 +25,4 @@ docker tag tigera/operator:latest docker.io/tigera/operator:test-build
21
25
# Clean up after ourselves.
22
26
popd
23
27
rm -rf operator/
28
+set +e
0 commit comments