-
-
Notifications
You must be signed in to change notification settings - Fork 67
/
Makefile
68 lines (48 loc) · 1.5 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
BAZEL = bazel
DEP = dep
KCTL = kubectl
REDIS_POD = $(shell $(KCTL) get pods -l app=redis -o jsonpath='{.items[0].metadata.name}')
REDIS_CLI_EXEC = $(KCTL) exec -it $(REDIS_POD) -- redis-cli
clean:
$(BAZEL) clean --expunge
.PHONY: build
build: gazelle
$(BAZEL) build //...
dep-ensure:
$(DEP) ensure
gazelle-repos:
$(BAZEL) run //:gazelle -- update-repos -from_file=Gopkg.lock
gazelle: gazelle-repos
$(BAZEL) run //:gazelle
go-setup: dep-ensure gazelle
docker-registry:
docker run -d -p 5000:5000 --restart=always --name registry registry:2
minikube-start:
minikube start --memory 5120 --cpus 4 --insecure-registry localhost:5000
minikube-setup:
minikube addons enable ingress
docker-local-push: go-setup
$(BAZEL) run //:colossus-web -- --norun
$(BAZEL) run //:colossus-auth -- --norun
$(BAZEL) run //:colossus-data -- --norun
$(BAZEL) run //:colossus-userinfo -- --norun
k8s-redis-deploy:
$(KCTL) apply -f k8s/redis.yaml
k8s-colossus-deploy:
$(KCTL) apply -f k8s/colossus.yaml
k8s-monitoring-deploy:
$(KCTL) apply -f k8s/monitoring.yaml
redis-set-password:
$(REDIS_CLI_EXEC) SET password tonydanza
redis-get-password:
$(REDIS_CLI_EXEC) GET password
deploy: docker-local-push k8s-colossus-deploy
restart-colossus:
$(KCTL) delete -f k8s/colossus.yaml
$(KCTL) apply -f k8s/colossus.yaml
teardown:
$(KCTL) delete svc,deployment,ing --all
$(KCTL) delete po/busybox
restart: teardown deploy
busybox-run:
$(KCTL) run curl --image=radial/busyboxplus:curl -i --tty