Skip to content

Commit

Permalink
Merge pull request #27 from oshoval/kind_args
Browse files Browse the repository at this point in the history
cluster: Allow custom kind args
  • Loading branch information
maiqueb authored Jun 18, 2024
2 parents e2a81fc + d5f6a4d commit c01d885
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion hack/cluster.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
set -xe
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"

KIND_ARGS="${KIND_ARGS:--ic -ikv -i6 -mne}"

OUTPUT_DIR=${OUTPUT_DIR:-${SCRIPT_DIR}/../.output}

Expand Down Expand Up @@ -51,7 +52,7 @@ function up() {
kind delete cluster --name $cluster_name
(
cd ${OVN_KUBERNETES_DIR}
./contrib/kind.sh --local-kind-registry -ic -ikv -i6 -mne -cn ${cluster_name}
./contrib/kind.sh --local-kind-registry ${KIND_ARGS} -cn ${cluster_name}
)
}

Expand Down

0 comments on commit c01d885

Please sign in to comment.