mirror of
https://github.com/arangodb/kube-arangodb.git
synced 2024-12-14 11:57:37 +00:00
Made full compilation the default make target. (#409)
This commit is contained in:
parent
45a2ef2d58
commit
b9b3e57f6f
2 changed files with 22 additions and 18 deletions
8
Makefile
8
Makefile
|
@ -121,10 +121,14 @@ ARANGOSYNCTESTCTRLBINNAME := $(PROJECT)_sync_test_ctrl
|
|||
ARANGOSYNCTESTCTRLBIN := $(BINDIR)/$(ARANGOSYNCTESTCTRLBINNAME)
|
||||
|
||||
.PHONY: all
|
||||
all: check-vars build
|
||||
all: check-vars verify-generated build
|
||||
|
||||
.PHONY: compile
|
||||
compile: check-vars build
|
||||
|
||||
# allall is now obsolete
|
||||
.PHONY: allall
|
||||
allall: check-vars verify-generated build
|
||||
allall: all
|
||||
|
||||
#
|
||||
# Tip: Run `eval $(minikube docker-env)` before calling make if you're developing on minikube.
|
||||
|
|
|
@ -136,7 +136,7 @@ helm install https://github.com/arangodb/kube-arangodb/releases/download/0.3.11/
|
|||
## Building
|
||||
|
||||
```bash
|
||||
DOCKERNAMESPACE=<your dockerhub account> make allall
|
||||
DOCKERNAMESPACE=<your dockerhub account> make
|
||||
kubectl apply -f manifests/arango-deployment-dev.yaml
|
||||
# To use `ArangoLocalStorage`, also run
|
||||
kubectl apply -f manifests/arango-storage-dev.yaml
|
||||
|
|
Loading…
Reference in a new issue