Skip to content

Commit 227aaf4

Browse files
Make repo / branch configurable
1 parent b512d26 commit 227aaf4

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

node/tests/k8st/infra/build-operator.sh

+6-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@
44
# in the ST and e2e tests in this repo.
55

66
# Clone the repository if needed.
7-
git clone --depth=1 https://github.com/tigera/operator -b ${BRANCH:-master}
7+
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
812

913
# Modify the versions that are in-use to match our locally built images.
1014
pushd operator
@@ -21,3 +25,4 @@ docker tag tigera/operator:latest docker.io/tigera/operator:test-build
2125
# Clean up after ourselves.
2226
popd
2327
rm -rf operator/
28+
set +e

0 commit comments

Comments
 (0)