-
Notifications
You must be signed in to change notification settings - Fork 3
/
cloud.deploy.yaml
60 lines (58 loc) · 1.48 KB
/
cloud.deploy.yaml
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
steps:
- name: "gcr.io/cloud-builders/docker"
args: ["build", "-t", "gcr.io/$PROJECT_ID/impactapi:latest", "."]
- name: "gcr.io/cloud-builders/docker"
args: ["push", "gcr.io/$PROJECT_ID/impactapi:latest"]
- name: "gcr.io/cloud-builders/gcloud"
args:
[
"run",
"deploy",
"impact-api",
"--image",
"gcr.io/$PROJECT_ID/impactapi:latest",
"--region",
"europe-north1",
"--platform",
"managed",
"--allow-unauthenticated",
]
- id: "apply migrations"
name: "gcr.io/google-appengine/exec-wrapper"
args:
[
"-i",
"gcr.io/$PROJECT_ID/${_SERVICE_NAME}",
"-s",
"${PROJECT_ID}:${_REGION}:${_INSTANCE_NAME}",
"-e",
"SETTINGS_NAME=${_SECRET_SETTINGS_NAME}",
"--",
"python",
"manage.py",
"migrate",
]
- id: "collect static"
name: "gcr.io/google-appengine/exec-wrapper"
args:
[
"-i",
"gcr.io/$PROJECT_ID/${_SERVICE_NAME}",
"-s",
"${PROJECT_ID}:${_REGION}:${_INSTANCE_NAME}",
"-e",
"SETTINGS_NAME=${_SECRET_SETTINGS_NAME}",
"--",
"python",
"manage.py",
"collectstatic",
"--verbosity",
"2",
"--no-input",
]
substitutions:
_INSTANCE_NAME: django-instance
_REGION: europe-north1
_SERVICE_NAME: impact-api
_SECRET_SETTINGS_NAME: django_settings
images: ["gcr.io/$PROJECT_ID/impactapi:latest"]