Skip to content

Commit

Permalink
Merge pull request #40 from cavokz/allow-custom-kind
Browse files Browse the repository at this point in the history
Allow custom Kind
  • Loading branch information
cavokz authored May 31, 2022
2 parents 17d79ee + 4742ec9 commit 64f587f
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ else
PYTHON:=source $(VENV)/bin/activate; python3
endif

KIND ?= kind

all: lint tests

prereq:
Expand Down Expand Up @@ -56,13 +58,13 @@ docker-push:
docker image rm $(DOCKER_REGISTRY)/geneve:latest $(DOCKER_REGISTRY)/geneve:$(GENEVE_VERSION)

kind-up:
kind create cluster --config=etc/kind-config.yml
kind load docker-image geneve
$(KIND) create cluster --config=etc/kind-config.yml
$(KIND) load docker-image geneve
kubectl apply -f etc/pods/geneve.yml
kubectl apply -f etc/services/geneve.yml

kind-down:
kind delete cluster
$(KIND) delete cluster

license-checks:
bash scripts/license_check.sh
Expand Down

0 comments on commit 64f587f

Please sign in to comment.