Skip to content

Commit 61e00c4

Browse files
committed
force kind install to avoid github action cache
1 parent 04953cb commit 61e00c4

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

hack/kind/run-cyclonus.sh

+2-3
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,9 @@ CNI=${CNI:-calico}
88
CLUSTER_NAME="netpol-$CNI"
99
RUN_FROM_SOURCE=${RUN_FROM_SOURCE:-true}
1010
FROM_SOURCE_ARGS=${FROM_SOURCE_ARGS:-"generate --include conflict --job-timeout-seconds 2"}
11+
INSTALL_KIND=${INSTALL_KIND:-true}
1112

12-
# install kind if not found
13-
if ! command -v kind &> /dev/null
14-
then
13+
if [[ $INSTALL_KIND == true ]]; then
1514
curl -Lo ./kind https://github.com/kubernetes-sigs/kind/releases/download/"${KIND_VERSION}"/kind-$(uname)-amd64
1615
chmod +x ./kind
1716
sudo mv kind /usr/local/bin

0 commit comments

Comments
 (0)