-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
49 lines (39 loc) · 1.51 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
####################################################################################################
# Variables
####################################################################################################
AWS_REGION=us-west-2
BRANCH=$(shell git rev-parse --abbrev-ref HEAD)
ENV=development
IMAGE=covid-dash
REPOSITORY=paguos
VERSION=v0.0.0
####################################################################################################
# Docker
####################################################################################################
build:
docker build . --target $(IMAGE)-$(ENV) -t $(IMAGE):$(ENV)
deploy: build
ifeq ($(VERSION), v0.0.0)
docker tag $(IMAGE):$(ENV) $(REPOSITORY)/$(IMAGE):$(BRANCH)
docker push $(REPOSITORY)/$(IMAGE):$(BRANCH)
else
docker tag $(IMAGE):$(ENV) $(REPOSITORY)/$(IMAGE):$(VERSION)
docker push $(REPOSITORY)/$(IMAGE):$(VERSION)
endif
run: build
docker run -p 8050:8050 $(IMAGE):$(ENV)
test:
docker build . --target $(IMAGE)-development -t $(IMAGE):development
docker run $(IMAGE):development flake8
docker run $(IMAGE):development python -m pytest
####################################################################################################
# CloudFormation & K8S
####################################################################################################
cnf/create:
./scripts/create_stack.sh
cnf/update:
./scripts/update_stack.sh
eks/config:
aws eks --region $(AWS_REGION) update-kubeconfig --name covid-dash
k8s/deploy:
kubectl apply -f kubernetes/