-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathMakefile
87 lines (73 loc) · 2.52 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
repo_name = mytelecom
version = latest
storage_account_name = mytelecomstate
storage_account_container_name = mytelecomtfstate
.PHONY: help
help:
@echo "make push-frontend # push frontend docker image"
@echo "make build-frontend # build frontend docker image"
@echo "make build-backend # build backend docker image"
@echo "make push-backend # push backend docker image"
@echo "make login # get Azure login"
@echo "make acr-login # get Azure repo login"
@echo "make deploy # deploy the stack to the server"
@echo "make full-scope # buld && push && deploy"
@echo "make request-certs # Run request SSL certificate"
@echo "make renew-certs # Renew Let's Encrypt certificate"
@echo "make help # show this help"
.PHONY: build-frontend
build-frontend :
docker build -t mytelecom-front:latest client/
docker tag mytelecom-front:latest $(repo_name).azurecr.io/mytelecom-front:$(version)
.PHONY: push-frontend
push-frontend:
$(MAKE) acr-login
docker push $(repo_name).azurecr.io/mytelecom-front:$(version)
.PHONY: build-backend
build-backend:
az storage blob download \
--account-name $(storage_account_name) \
--container-name $(storage_account_container_name) \
--name .env \
--file ./server/.env
az storage blob download \
--account-name $(storage_account_name) \
--container-name $(storage_account_container_name) \
--name private.key \
--file ./server/private.key
docker build -t mytelecom-backend:latest server/
docker tag mytelecom-backend:latest $(repo_name).azurecr.io/mytelecom-backend:$(version)
.PHONY: push-backend
push-backend:
$(MAKE) acr-login
docker push $(repo_name).azurecr.io/mytelecom-backend:$(version)
.PHONY: login
login:
az login
.PHONY: acr-login
acr-login:
az acr login --name $(repo_name)
.PHONY: deploy
deploy:
ANSIBLE_CONFIG=~/infra/deploy/ansible.cfg ansible-playbook -i infra/deploy/hosts.yaml ./infra/deploy/deploy.yml
.PHONY: request-certs
request-certs:
ANSIBLE_CONFIG=~/infra/deploy/ansible.cfg ansible-playbook -i infra/deploy/hosts.yaml ./infra/deploy/get-cert.yml
.PHONY: renew-certs
renew-certs:
ANSIBLE_CONFIG=~/infra/deploy/ansible.cfg ansible-playbook -i infra/deploy/hosts.yaml ./infra/deploy/cerbot-renew.yml
.PHONY: build-all
build-all:
$(MAKE) build-frontend
$(MAKE) build-backend
.PHONY: push-all
push-all:
$(MAKE) push-frontend
$(MAKE) push-backend
.PHONY: full-scope
full-scope:
$(MAKE) build-frontend
$(MAKE) build-backend
$(MAKE) push-frontend
$(MAKE) push-backend
$(MAKE) deploy