forked from cloud-gov/pages-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfederalist-pipeline.yml
313 lines (284 loc) · 7.88 KB
/
federalist-pipeline.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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
---
############################
# SHARED
env-cf: &env-cf
CF_API: https://api.fr.cloud.gov
CF_USERNAME: ((production-cf-username))
CF_PASSWORD: ((production-cf-password))
CF_ORG: gsa-18f-federalist
CF_SPACE: production
CF_STACK: cflinuxfs4
node-image: &node-image
platform: linux
image_resource:
type: docker-image
source:
repository: node
tag: 14
cf-image: &cf-image
platform: linux
image_resource:
type: docker-image
source:
repository: 18fgsa/concourse-task
test: &test
- in_parallel:
- get: nginx
params: {save: true}
- get: node
params: {save: true}
- in_parallel:
- task: test-mock
privileged: true
config:
platform: linux
image_resource:
type: docker-image
source:
repository: karlkfi/concourse-dcind
inputs:
- name: src
- name: nginx
- name: node
run:
dir: src
path: ci/docker/entrypoint.sh
args:
- bash
- -ceux
- |
pushd ..
docker load -i nginx/image
docker tag "$(cat nginx/image-id)" "$(cat nginx/repository):$(cat nginx/tag)"
docker load -i node/image
docker tag "$(cat node/image-id)" "$(cat node/repository):$(cat node/tag)"
popd
docker-compose -f docker-compose.yml run --no-deps app npm install
docker-compose -f docker-compose.yml run --no-deps app npm run parse
docker-compose -f docker-compose.yml run app npm test
docker-compose -f docker-compose.yml down
- task: test-integration
privileged: true
params:
DEDICATED_AWS_ACCESS_KEY_ID: ((dedicated-aws-access-key-id))
DEDICATED_AWS_SECRET_ACCESS_KEY: ((dedicated-aws-secret-access-key))
config:
platform: linux
image_resource:
type: docker-image
source:
repository: karlkfi/concourse-dcind
inputs:
- name: src
- name: nginx
- name: node
run:
dir: src
path: ci/docker/entrypoint.sh
args:
- bash
- -ceux
- |
pushd ..
docker load -i nginx/image
docker tag "$(cat nginx/image-id)" "$(cat nginx/repository):$(cat nginx/tag)"
docker load -i node/image
docker tag "$(cat node/image-id)" "$(cat node/repository):$(cat node/tag)"
popd
docker-compose -f docker-compose.yml run --no-deps app npm install
docker-compose -f docker-compose.yml run --no-deps app npm run parse:integration
docker-compose -f docker-compose.yml run app npm run test:integration
docker-compose -f docker-compose.yml run app npm run test:integration:website-config
docker-compose -f docker-compose.yml down
############################
# JOBS
jobs:
- name: set-pipeline
plan:
- get: src
resource: src-production
trigger: true
- set_pipeline: federalist-proxy
file: src/ci/federalist-pipeline.yml
- name: test-pr-main
plan:
- get: src
resource: pr-main
trigger: true
version: every
- put: src
resource: pr-main
params:
path: src
status: pending
base_context: concourse
context: test
- do: *test
on_failure:
put: src
resource: pr-main
params:
path: src
status: failure
base_context: concourse
context: test
on_success:
put: src
resource: pr-main
params:
path: src
status: success
base_context: concourse
context: test
- name: test-and-deploy-federalist-production
plan:
- get: src
resource: src-production
passed: [set-pipeline]
trigger: true
params: {depth: 1}
- put: gh-status
inputs: [src]
params: {state: pending}
- do: *test
- task: build-redirects
config:
<<: *node-image
inputs: [name: src]
outputs: [name: src]
params:
SITE_REDIRECTS: ((federalist-proxy-production-site-redirects))
run:
dir: src
path: bash
args: [-c, npm run build-redirects]
- task: deploy
config:
<<: *cf-image
inputs: [name: src]
run:
dir: src
path: ci/tasks/deploy.sh
params:
<<: *env-cf
CF_APP_NAME: federalist-proxy
CF_MANIFEST: .cloudgov/manifest.yml
CF_VARS_FILE: .cloudgov/vars/federalist-production.yml
on_failure:
try:
task: cancel-api-deployment
config:
<<: *cf-image
inputs: [name: src]
run:
dir: src
path: ci/tasks/cancel-deployment.sh
params:
<<: *env-cf
CF_APP_NAME: federalist-proxy
on_failure:
in_parallel:
- put: gh-status
inputs: [src]
params: {state: failure}
- put: slack
params:
text: |
:x: FAILED: federalist-proxy deployment on production
<$ATC_EXTERNAL_URL/teams/$BUILD_TEAM_NAME/pipelines/$BUILD_PIPELINE_NAME/jobs/$BUILD_JOB_NAME/builds/$BUILD_NAME|View build details>
channel: ((slack-channel))
username: ((slack-username))
icon_url: ((slack-icon-url))
on_success:
in_parallel:
- put: gh-status
inputs: [src]
params: {state: success}
- put: slack
params:
text: |
:white_check_mark: SUCCESS: Successfully deployed federalist-proxy on production
<$ATC_EXTERNAL_URL/teams/$BUILD_TEAM_NAME/pipelines/$BUILD_PIPELINE_NAME/jobs/$BUILD_JOB_NAME/builds/$BUILD_NAME|View build details>
channel: ((slack-channel))
username: ((slack-username))
icon_url: ((slack-icon-url))
- name: nightly-tasks-production
plan:
- get: src
resource: src-production
passed: [set-pipeline]
params: {depth: 1}
- get: nightly
trigger: true
- task: restage
config:
<<: *cf-image
inputs: [name: src]
run:
dir: src
path: ci/tasks/restage.sh
params:
<<: *env-cf
CF_APP_NAME: federalist-proxy
############################
# RESOURCES
resources:
- name: src-production
type: git
icon: github
source:
uri: ((git-base-url))/((proxy-repository-path))
branch: main
- name: pr-main
type: pull-request
check_every: 1m
source:
repository: ((proxy-repository-path))
access_token: ((gh-access-token))
base_branch: main
disable_forks: true
ignore_drafts: false
- name: nightly
type: time
source:
start: 12:00 AM
stop: 1:00 AM
location: America/New_York
- name: nginx
type: docker-image
source:
repository: nginx
tag: 1
- name: node
type: docker-image
source:
repository: node
tag: 16
- name: slack
type: slack-notification
source:
url: ((slack-webhook-url))
- name: gh-status
type: cogito
check_every: 1h
source:
owner: cloud-gov
repo: pages-proxy
access_token: ((gh-access-token))
context_prefix: concourse
############################
# RESOURCE TYPES
resource_types:
- name: cogito
type: docker-image
check_every: 24h
source:
repository: pix4d/cogito
- name: slack-notification
type: docker-image
source:
repository: cfcommunity/slack-notification-resource
- name: pull-request
type: docker-image
source:
repository: teliaoss/github-pr-resource