-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontinuous-pipe.yml
131 lines (108 loc) · 3.84 KB
/
continuous-pipe.yml
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
environment_variables:
- name: APP_ENV
value: "production"
- name: REMOTE_ENV
value: "1"
tasks:
images:
build:
environment:
- name: APP_ENV
value: ${APP_ENV}
services:
web:
image: quay.io/continuouspipe/laravel-demo
infrastructure:
deploy:
cluster: ${CLUSTER}
environment:
name: '"laravel-demo-" ~ code_reference.branch'
services:
database:
specification:
volumes:
- type: persistent
name: database-volume
capacity: 5Gi
storage_class: default
volume_mounts:
- name: database-volume
mount_path: /var/lib/mysql
command:
- /usr/local/bin/docker-entrypoint.sh
- mysqld
- --ignore-db-dir=lost+found
- --max_allowed_packet=128M
ports:
- 3306
resources:
requests:
cpu: 50m
memory: 250Mi
limits:
cpu: 500m
memory: 500Mi
redis:
deployment_strategy:
readiness_probe:
type: tcp
port: 6379
specification:
ports:
- 6379
resources:
requests:
cpu: 50m
memory: 100Mi
limits:
cpu: 250m
memory: 250Mi
initialization:
run:
cluster: ${CLUSTER}
environment:
name: '"laravel-demo-" ~ code_reference.branch'
image:
from_service: web
commands:
- tools/docker/setup/setup.sh
environment_variables: &WEB_ENV_VARS
- name: APP_ENV
value: ${APP_ENV}
- name: REMOTE_ENV
value: ${REMOTE_ENV}
- name: APP_URL
value: ${APP_URL}
- name: APP_USER_LOCAL
value: false
filter:
expression: 'tasks.infrastructure.services.database.created'
application:
deploy:
cluster: ${CLUSTER}
environment:
name: '"laravel-demo-" ~ code_reference.branch'
services:
web:
specification:
accessibility:
from_external: true
environment_variables:
<<: *WEB_ENV_VARS
resources:
requests:
cpu: 50m
memory: 500Mi
limits:
cpu: 1
memory: 2G
ports:
- 80
- 443
deployment_strategy:
readiness_probe:
type: tcp
port: 80
initial_delay_seconds: 30
period_seconds: 30
failure_threshold: 120