-
Notifications
You must be signed in to change notification settings - Fork 27
/
deploy.yml
313 lines (313 loc) · 10 KB
/
deploy.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
313
version: v1
kind: kubernetes
application: potato-facts
targets: #This section defines the targets to which you are deploying, and their constraints.
dev:
account: demo-dev-cluster
namespace: borealis-dev
strategy: rolling
infosec:
account: demo-staging-cluster
constraints:
afterDeployment:
- runWebhook:
name: Security_Scanners
dependsOn:
- dev
namespace: borealis-infosec
strategy: rolling
prod-apac (canary-istio):
account: demo-prod-west-cluster
constraints:
afterDeployment:
- runWebhook:
name: Send_Slack_Deployment_Complete
beforeDeployment:
- pause:
requiresRoles:
- Organization Admin
untilApproved: true
- runWebhook:
name: Send_Slack_Deployment_Approval_Required
dependsOn:
- infosec
- staging
namespace: borealis-prod-apac
strategy: mycanary
prod-east (canary-smi):
account: demo-prod-west-cluster
constraints:
afterDeployment:
- runWebhook:
name: Send_Slack_Deployment_Complete
beforeDeployment:
- pause:
requiresRoles:
- Organization Admin
untilApproved: true
- runWebhook:
name: Send_Slack_Deployment_Approval_Required
dependsOn:
- infosec
- staging
namespace: borealis-prod-east
strategy: mycanary
prod-eu (blue-green):
account: demo-prod-eu-cluster
constraints:
afterDeployment:
- runWebhook:
name: Send_Slack_Deployment_Complete
beforeDeployment:
- pause:
requiresRoles:
- Organization Admin
untilApproved: true
- runWebhook:
name: Send_Slack_Deployment_Approval_Required
dependsOn:
- infosec
- staging
namespace: borealis-prod-eu
strategy: myBlueGreen
prod-west (canary-pod):
account: demo-prod-west-cluster
constraints:
afterDeployment:
- runWebhook:
name: Send_Slack_Deployment_Complete
beforeDeployment:
- pause:
requiresRoles:
- Organization Admin
untilApproved: true
- runWebhook:
name: Send_Slack_Deployment_Approval_Required
dependsOn:
- infosec
- staging
namespace: borealis-prod
strategy: mycanary
staging:
account: demo-staging-cluster
constraints:
afterDeployment:
- runWebhook:
name: Integration_Tests
dependsOn:
- dev
namespace: borealis-staging
strategy: rolling
manifests: #This section defines the Manifests you are deploying, by default they reach all targets, but you can specify certain targets if needed.
- path: manifests/potato-facts.yml
- path: manifests/potato-facts-external-service.yml
targets:
- prod-west (canary-pod)
- prod-eu (blue-green)
- prod-east (canary-smi)
- prod-apac (canary-istio)
- path: manifests/potato-facts-internal-service.yml
targets:
- dev
- staging
- infosec
- prod-eu (blue-green)
- path: manifests/potato-lies.yml
- path: manifests/istio-files
targets:
- prod-apac (canary-istio)
strategies: #This section defines the strategies environments can use to deploy.
myBlueGreen:
blueGreen:
redirectTrafficAfter:
- analysis:
interval: 10
lookbackMethod: GROWING
numberOfJudgmentRuns: 1
queries:
- avgCPUUsage-pass
rollBackMode: manual
rollForwardMode: automatic
units: seconds
- exposeServices:
services:
- potato-facts-internal
- potato-lies-internal
- potato-facts-external
- potato-lies-external
ttl:
duration: 30
unit: MINUTES
- pause:
untilApproved: true
shutDownOldVersionAfter:
- pause:
untilApproved: true
- runWebhook:
name: Check_Logs
- analysis:
interval: 10
lookbackMethod: GROWING
numberOfJudgmentRuns: 1
queries:
- avgCPUUsage-pass
rollBackMode: manual
rollForwardMode: automatic
units: seconds
mycanary:
canary:
steps:
- exposeServices:
services:
- potato-facts-external
- potato-lies-external
ttl:
duration: 30
unit: MINUTES
- setWeight:
weight: 25
- analysis:
interval: 10
lookbackMethod: GROWING
numberOfJudgmentRuns: 1
queries:
- avgCPUUsage-pass
rollBackMode: manual
rollForwardMode: automatic
units: seconds
- runWebhook:
name: Check_Logs
- setWeight:
weight: 50
- analysis:
interval: 10
lookbackMethod: GROWING
numberOfJudgmentRuns: 3
queries:
- avgCPUUsage-fail
- avgCPUUsage-pass
rollBackMode: manual
rollForwardMode: manual
units: seconds
- runWebhook:
name: Check_Logs
- setWeight:
weight: 100
rolling:
canary:
steps:
- setWeight:
weight: 100
- exposeServices:
services:
- potato-facts-internal
- potato-lies-internal
ttl:
duration: 30
unit: MINUTES
analysis: #This section defines queries against your monitoring system that can be used for automated canary analysis.
defaultMetricProviderName: Stephen-Prometheus
queries:
- lowerLimit: 0.0
name: avgCPUUsage-pass
queryTemplate: avg (avg_over_time(container_cpu_system_seconds_total{job="kubelet"}[{{armory.promQlStepInterval}}]) * on (pod) group_left (annotation_app) sum(kube_pod_annotations{job="kube-state-metrics",annotation_deploy_armory_io_replica_set_name="{{armory.replicaSetName}}"}) by (annotation_app, pod)) by (annotation_app) OR on() vector(0)
upperLimit: 10000.1
- lowerLimit: 0.0
name: avgCPUUsage-fail
queryTemplate: "avg (avg_over_time(container_cpu_system_seconds_total{job=\"kubelet\"}[{{armory.promQlStepInterval}}]) * on (pod) group_left (annotation_app)\n sum(kube_pod_annotations{job=\"kube-state-metrics\",annotation_deploy_armory_io_replica_set_name=\"{{armory.replicaSetName}}\"})\n by (annotation_app, pod)) by (annotation_app) "
upperLimit: 0.001
trafficManagement: #Traffic management configuration
- smi:
- rootServiceName: potato-facts-external
- rootServiceName: potato-lies-external
targets:
- prod-east (canary-smi)
- kubernetes:
- activeService: potato-facts-external
previewService: potato-facts-internal
- activeService: potato-lies-external
previewService: potato-lies-internal
targets:
- prod-eu (blue-green)
- istio:
- destinationRule:
activeSubsetName: v1
name: potato-facts
virtualService:
name: potato-facts
- destinationRule:
activeSubsetName: v1
name: potato-lies-external
virtualService:
name: potato-lies-external
targets:
- prod-apac (canary-istio)
webhooks: #Webhooks can be used to run external automation.
- bodyTemplate:
inline: |-
{ "event_type": "webhookCallback", "client_payload": {
"callbackUri": "{{armory.callbackUri}}/callback"
}
}
headers:
- key: Authorization
value: token {{secrets.github_token}}
- key: Content-Type
value: application/json
method: POST
name: Check_Logs
retryCount: 3
uriTemplate: https://api.github.com/repos/{{secrets.github_org}}/{{secrets.github_repository}}/dispatches
- bodyTemplate:
inline: |-
{ "event_type": "checkLogs", "client_payload": {
"callbackUri": "{{armory.callbackUri}}/callback"
}
}
headers:
- key: Authorization
value: token {{secrets.github_token}}
- key: Content-Type
value: application/json
method: POST
name: Security_Scanners
retryCount: 3
uriTemplate: https://api.github.com/repos/{{secrets.github_org}}/{{secrets.github_repository}}/dispatches
- bodyTemplate:
inline: |-
{ "event_type": "checkLogs", "client_payload": {
"callbackUri": "{{armory.callbackUri}}/callback"
}
}
headers:
- key: Authorization
value: token {{secrets.github_token}}
- key: Content-Type
value: application/json
method: POST
name: Integration_Tests
retryCount: 3
uriTemplate: https://api.github.com/repos/{{secrets.github_org}}/{{secrets.github_repository}}/dispatches
- bodyTemplate:
inline: '{ "status_url": "https://console.cloud.armory.io/deployments/{{armory.deploymentId}}", "message": "Deployment of {{armory.applicationName}} to {{armory.environmentName}} is starting." }'
disableCallback: true
method: POST
name: Send_Slack_Deployment_Starting
retryCount: 3
uriTemplate: '{{secrets.slackwebhookURL}}'
- bodyTemplate:
inline: '{ "status_url": "https://console.cloud.armory.io/deployments/{{armory.deploymentId}}", "message": "Deployment of {{armory.applicationName}} to {{armory.environmentName}} is complete." }'
disableCallback: true
method: POST
name: Send_Slack_Deployment_Complete
retryCount: 3
uriTemplate: '{{secrets.slackwebhookURL}}'
- bodyTemplate:
inline: '{ "status_url": "https://console.cloud.armory.io/deployments/{{armory.deploymentId}}", "message": "Deployment of {{armory.applicationName}} to {{armory.environmentName}} requires a manual approval." }'
disableCallback: true
method: POST
name: Send_Slack_Deployment_Approval_Required
retryCount: 3
uriTemplate: '{{secrets.slackwebhookURL}}'
deploymentConfig:
keepDeploymentObject: true