forked from cloud-gov/cf-hello-worlds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpipeline.yml
273 lines (254 loc) · 7.98 KB
/
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
jobs:
- name: deploy-python-flask
serial_groups: [apps]
plan:
- in_parallel: &plan-gets
- get: cf-hello-worlds
- get: timer
trigger: true
- put: deploy-python-flask
params:
path: cf-hello-worlds/python-flask
manifest: cf-hello-worlds/python-flask/manifest.yml
on_failure:
put: slack
params: &slack-params
text: |
:x: Failed to deploy python-flask sample app
<$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:
put: slack
params:
<<: *slack-params
channel: ((slack-news-channel))
text: |
:white_check_mark: Successfully deployed python-flask sample app
<$ATC_EXTERNAL_URL/teams/$BUILD_TEAM_NAME/pipelines/$BUILD_PIPELINE_NAME/jobs/$BUILD_JOB_NAME/builds/$BUILD_NAME|View build details>
- name: deploy-ruby-padrino
serial_groups: [apps]
plan:
- in_parallel: *plan-gets
- put: deploy-ruby-padrino
params:
path: cf-hello-worlds/ruby-padrino
manifest: cf-hello-worlds/ruby-padrino/manifest.yml
on_failure:
put: slack
params:
<<: *slack-params
text: |
:x: Failed to deploy ruby-padrino sample app
<$ATC_EXTERNAL_URL/teams/$BUILD_TEAM_NAME/pipelines/$BUILD_PIPELINE_NAME/jobs/$BUILD_JOB_NAME/builds/$BUILD_NAME|View build details>
on_success:
put: slack
params:
<<: *slack-params
channel: ((slack-news-channel))
text: |
:white_check_mark: Successfully deployed ruby-padrino sample app
<$ATC_EXTERNAL_URL/teams/$BUILD_TEAM_NAME/pipelines/$BUILD_PIPELINE_NAME/jobs/$BUILD_JOB_NAME/builds/$BUILD_NAME|View build details>
- name: deploy-ruby-sinatra
serial_groups: [apps]
plan:
- in_parallel: *plan-gets
- put: deploy-ruby-sinatra
params:
path: cf-hello-worlds/ruby-sinatra
manifest: cf-hello-worlds/ruby-sinatra/manifest.yml
on_failure:
put: slack
params:
<<: *slack-params
text: |
:x: Failed to deploy ruby-sinatra sample app
<$ATC_EXTERNAL_URL/teams/$BUILD_TEAM_NAME/pipelines/$BUILD_PIPELINE_NAME/jobs/$BUILD_JOB_NAME/builds/$BUILD_NAME|View build details>
on_success:
put: slack
params:
<<: *slack-params
channel: ((slack-news-channel))
text: |
:white_check_mark: Successfully deployed ruby-sinatra sample app
<$ATC_EXTERNAL_URL/teams/$BUILD_TEAM_NAME/pipelines/$BUILD_PIPELINE_NAME/jobs/$BUILD_JOB_NAME/builds/$BUILD_NAME|View build details>
- name: deploy-nodejs
serial_groups: [apps]
plan:
- in_parallel: *plan-gets
- put: deploy-nodejs
params:
path: cf-hello-worlds/nodejs
manifest: cf-hello-worlds/nodejs/manifest.yml
on_failure:
put: slack
params:
<<: *slack-params
text: |
:x: Failed to deploy nodejs sample app
<$ATC_EXTERNAL_URL/teams/$BUILD_TEAM_NAME/pipelines/$BUILD_PIPELINE_NAME/jobs/$BUILD_JOB_NAME/builds/$BUILD_NAME|View build details>
on_success:
put: slack
params:
<<: *slack-params
channel: ((slack-news-channel))
text: |
:white_check_mark: Successfully deployed nodejs sample app
<$ATC_EXTERNAL_URL/teams/$BUILD_TEAM_NAME/pipelines/$BUILD_PIPELINE_NAME/jobs/$BUILD_JOB_NAME/builds/$BUILD_NAME|View build details>
- name: deploy-php
serial_groups: [apps]
plan:
- in_parallel: *plan-gets
- put: deploy-php
params:
path: cf-hello-worlds/php
manifest: cf-hello-worlds/php/manifest.yml
on_failure:
put: slack
params:
<<: *slack-params
text: |
:x: Failed to deploy php sample app
<$ATC_EXTERNAL_URL/teams/$BUILD_TEAM_NAME/pipelines/$BUILD_PIPELINE_NAME/jobs/$BUILD_JOB_NAME/builds/$BUILD_NAME|View build details>
on_success:
put: slack
params:
<<: *slack-params
channel: ((slack-news-channel))
text: |
:white_check_mark: Successfully deployed php sample app
<$ATC_EXTERNAL_URL/teams/$BUILD_TEAM_NAME/pipelines/$BUILD_PIPELINE_NAME/jobs/$BUILD_JOB_NAME/builds/$BUILD_NAME|View build details>
- name: deploy-java
serial_groups: [apps]
plan:
- in_parallel: *plan-gets
- task: build
file: cf-hello-worlds/java-see/build-java-see.yml
- put: deploy-java
params:
path: cf-hello-worlds-build/java-see/target/hello-world-0.0.1-SNAPSHOT.jar
manifest: cf-hello-worlds-build/java-see/manifest.yml
on_failure:
put: slack
params:
<<: *slack-params
text: |
:x: Failed to deploy java sample app
<$ATC_EXTERNAL_URL/teams/$BUILD_TEAM_NAME/pipelines/$BUILD_PIPELINE_NAME/jobs/$BUILD_JOB_NAME/builds/$BUILD_NAME|View build details>
on_success:
put: slack
params:
<<: *slack-params
channel: ((slack-news-channel))
text: |
:white_check_mark: Successfully deployed java sample app
<$ATC_EXTERNAL_URL/teams/$BUILD_TEAM_NAME/pipelines/$BUILD_PIPELINE_NAME/jobs/$BUILD_JOB_NAME/builds/$BUILD_NAME|View build details>
- name: deploy-dotnet-core
serial_groups: [apps]
plan:
- in_parallel: *plan-gets
- put: deploy-dotnet-core
params:
path: cf-hello-worlds/dotnet-core
manifest: cf-hello-worlds/dotnet-core/manifest.yml
on_failure:
put: slack
params:
<<: *slack-params
text: |
:x: Failed to deploy dotnet-core sample app
<$ATC_EXTERNAL_URL/teams/$BUILD_TEAM_NAME/pipelines/$BUILD_PIPELINE_NAME/jobs/$BUILD_JOB_NAME/builds/$BUILD_NAME|View build details>
on_success:
put: slack
params:
<<: *slack-params
channel: ((slack-news-channel))
text: |
:white_check_mark: Successfully deployed dotnet-core sample app
<$ATC_EXTERNAL_URL/teams/$BUILD_TEAM_NAME/pipelines/$BUILD_PIPELINE_NAME/jobs/$BUILD_JOB_NAME/builds/$BUILD_NAME|View build details>
- name: deploy-deno
serial_groups: [apps]
plan:
- in_parallel: *plan-gets
- task: compile-deno
config:
platform: linux
image_resource:
type: docker-image
source:
repository: denoland/deno:alpine
inputs: [name: cf-hello-worlds]
outputs: [name: cf-hello-worlds]
run:
dir: cf-hello-worlds/deno
path: deno
args: [compile, --allow-net=0.0.0.0, --allow-env=PORT, -o bin/main, main.ts]
- put: deploy-deno
params:
path: cf-hello-worlds/deno
manifest: cf-hello-worlds/deno/manifest.yml
on_failure:
put: slack
params:
<<: *slack-params
text: |
:x: Failed to deploy deno sample app
<$ATC_EXTERNAL_URL/teams/$BUILD_TEAM_NAME/pipelines/$BUILD_PIPELINE_NAME/jobs/$BUILD_JOB_NAME/builds/$BUILD_NAME|View build details>
on_success:
put: slack
params:
<<: *slack-params
channel: ((slack-news-channel))
text: |
:white_check_mark: Successfully deployed deno sample app
<$ATC_EXTERNAL_URL/teams/$BUILD_TEAM_NAME/pipelines/$BUILD_PIPELINE_NAME/jobs/$BUILD_JOB_NAME/builds/$BUILD_NAME|View build details>
resources:
- name: cf-hello-worlds
type: git
source:
uri: https://github.com/cloud-gov/cf-hello-worlds
branch: main
- name: timer
type: time
source:
interval: 24h
- name: deploy-python-flask
type: cf
source: &cf-source
api: ((cf-api-url))
username: ((cf-username))
password: ((cf-password))
organization: ((cf-organization))
space: ((cf-space))
verbose: true
- name: deploy-ruby-padrino
type: cf
source: *cf-source
- name: deploy-ruby-sinatra
type: cf
source: *cf-source
- name: deploy-nodejs
type: cf
source: *cf-source
- name: deploy-php
type: cf
source: *cf-source
- name: deploy-java
type: cf
source: *cf-source
- name: deploy-dotnet-core
type: cf
source: *cf-source
- name: deploy-deno
type: cf
source: *cf-source
- name: slack
type: slack-notification
source:
url: ((slack-webhook-url))
resource_types:
- name: slack-notification
type: docker-image
source:
repository: cfcommunity/slack-notification-resource