We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04953cb commit 61e00c4Copy full SHA for 61e00c4
hack/kind/run-cyclonus.sh
@@ -8,10 +8,9 @@ CNI=${CNI:-calico}
8
CLUSTER_NAME="netpol-$CNI"
9
RUN_FROM_SOURCE=${RUN_FROM_SOURCE:-true}
10
FROM_SOURCE_ARGS=${FROM_SOURCE_ARGS:-"generate --include conflict --job-timeout-seconds 2"}
11
+INSTALL_KIND=${INSTALL_KIND:-true}
12
-# install kind if not found
13
-if ! command -v kind &> /dev/null
14
-then
+if [[ $INSTALL_KIND == true ]]; then
15
curl -Lo ./kind https://github.com/kubernetes-sigs/kind/releases/download/"${KIND_VERSION}"/kind-$(uname)-amd64
16
chmod +x ./kind
17
sudo mv kind /usr/local/bin
0 commit comments