1
0
mirror of https://github.com/aquasecurity/kube-bench.git synced 2024-11-15 20:39:08 +00:00

Change Kind version (#411)

Something with the old version was crashing. now using the most recent one 1.15.3 is working.
This commit is contained in:
yoavrotems 2019-09-03 12:42:07 +00:00 committed by Liz Rice
parent 41e0ae77de
commit 27261d1d32

View File

@ -42,7 +42,7 @@ ifndef HAS_KIND
endif
@if [ -z $$(kind get clusters | grep $(KIND_PROFILE)) ]; then\
echo "Could not find $(KIND_PROFILE) cluster. Creating...";\
kind create cluster --name $(KIND_PROFILE) --image kindest/node:v1.11.3 --wait 5m;\
kind create cluster --name $(KIND_PROFILE) --image kindest/node:v1.15.3 --wait 5m;\
fi
# pushses the current dev version to the kind cluster.