-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathdeploy-webhook.yml
263 lines (259 loc) · 8.16 KB
/
deploy-webhook.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
version: v1
kind: kubernetes
application: potato-facts4
# Map of Deployment Targets, this is set up in a way where
# we can do multi-target deployments (multi-region or multi-cluster)
targets:
# This in the name of a deployment, underneath it are its configuration
dev:
# the name of an agent configured account
account: demo-dev-cluster #sa-eks-direct #saClusterViaHelm
# Optionally override the namespaces that are in the manifests
namespace: borealis-dev
# This is the key to a strategy under the strategies map
strategy: rolling
staging:
# the name of an agent configured account
account: demo-staging-cluster
# Optionally override the namespaces that are in the manifests
namespace: borealis-staging
# This is the key to a strategy under the strategies map
strategy: rolling
# This is a list of manifest names that should be included in this deployment
constraints:
dependsOn: ["dev"]
afterDeployment:
- runWebhook:
name: Run_Integration_Tests
context:
environment: production
- runWebhook:
name: Run_Security_Scanners
- runWebhook:
name: CheckLogs
- pause:
duration: 1
unit: seconds
# The list of manifests sources
manifests:
# This will read all yaml|yml files in a dir and deploy all manifests in that directory to all targets.
- path: /manifests/potato-facts.yml
- path: /manifests/potato-facts-external-service.yml
targets: [ prod-eu]
# The map of strategies, a deployment target will reference one of these
strategies:
# this is the name for the strategy
mycanary:
# This map key, is the deployment strategy type
canary:
# List of canary steps
steps:
# The map key is the step type
- setWeight:
weight: 25
- analysis:
interval: 7
units: seconds
numberOfJudgmentRuns: 1
rollBackMode: manual
rollForwardMode: automatic
queries:
- avgCPUUsage-pass
- runWebhook:
name: CheckLogs
#- pause:
# untilApproved: true
- setWeight:
weight: 50
- analysis:
interval: 7
units: seconds
numberOfJudgmentRuns: 3
rollBackMode: manual
rollForwardMode: manual
queries:
- avgCPUUsage-fail
- avgCPUUsage-pass
- setWeight:
weight: 100
rolling:
canary:
steps:
- setWeight:
weight: 100
myBlueGreen:
blueGreen:
activeService: potato-facts-external
previewService: potato-facts-preview
redirectTrafficAfter:
- runWebhook:
name: CheckLogs
- analysis:
interval: 7
units: seconds
numberOfJudgmentRuns: 3
rollBackMode: manual
rollForwardMode: manual
queries:
- avgCPUUsage-fail
- avgCPUUsage-pass
shutDownOldVersionAfter:
- pause:
untilApproved: true
analysis:
defaultMetricProviderName: Stephen-Prometheus
queries:
- name: avgCPUUsage-pass
upperLimit: 10000 #3
lowerLimit: 0
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)
#,annotation_deploy_armory_io_replica_set_name="${canaryReplicaSetName}"})
#${ARMORY_REPLICA_SET_NAME}
#,annotation_deploy_armory_io_replica_set_name="${ARMORY_REPLICA_SET_NAME}"
#${replicaSetName}
#${applicationName}
# note the time should actually be set to ${promQlStepInterval}
- name: invalidQuery
upperLimit: 10000 #3
lowerLimit: 0
queryTemplate: >-
avg (avg_over_time(c
- name: avgCPUUsage-fail
upperLimit: 1
lowerLimit: 0
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)
# armory deploy start -f deploy.yml
webhooks:
- name: CheckLogs
method: POST
uriTemplate: https://api.github.com/repos/stephenatwell/borealis-demo-1/dispatches
networkMode: direct
headers:
- key: Authorization
value: token {{secrets.github_token}}
- key: Content-Type
value: application/json
bodyTemplate:
inline: >-
{
"event_type": "checkLogs",
"client_payload": {
"callbackUri": "{{armory.callbackUri}}/callback"
}
}
retryCount: 3
- name: Upgrade_Database_Schema
method: POST
uriTemplate: https://api.github.com/repos/stephenatwell/borealis-demo-1/dispatches
networkMode: direct
headers:
- key: Authorization
value: token {{secrets.github_token}}
- key: Content-Type
value: application/json
bodyTemplate:
inline: >-
{
"event_type": "checkLogs",
"client_payload": {
"callbackUri": "{{armory.callbackUri}}/callback",
"environment": "{{context.environment}}"
}
}
retryCount: 3
- name: Check_Change_Approval_Workflow
method: POST
uriTemplate: https://api.github.com/repos/stephenatwell/borealis-demo-1/dispatches
networkMode: direct
headers:
- key: Authorization
value: token {{secrets.github_token}}
- key: Content-Type
value: application/json
bodyTemplate:
inline: >-
{
"event_type": "checkLogs",
"client_payload": {
"callbackUri": "{{armory.callbackUri}}/callback"
}
}
retryCount: 3
- name: Run_Integration_Tests
method: POST
uriTemplate: https://api.github.com/repos/stephenatwell/borealis-demo-1/dispatches
networkMode: direct
headers:
- key: Authorization
value: token {{secrets.github_token}}
- key: Content-Type
value: application/json
bodyTemplate:
inline: >-
{
"event_type": "webhookCallback",
"client_payload": {
"callbackUri": "{{armory.callbackUri}}/callback"
}
}
retryCount: 3
- name: Run_Security_Scanners
method: POST
uriTemplate: https://api.github.com/repos/stephenatwell/borealis-demo-1/dispatches
networkMode: direct
headers:
- key: Authorization
value: token {{secrets.github_token}}
- key: Content-Type
value: application/json
bodyTemplate:
inline: >-
{
"event_type": "checkLogs",
"client_payload": {
"callbackUri": "{{armory.callbackUri}}/callback"
}
}
retryCount: 3
- name: Run_Integration_Tests
method: POST
uriTemplate: https://api.github.com/repos/stephenatwell/borealis-demo-1/dispatches
networkMode: direct
headers:
- key: Authorization
value: token {{secrets.github_token}}
- key: Content-Type
value: application/json
bodyTemplate:
inline: >-
{
"event_type": "checkLogs",
"client_payload": {
"callbackUri": "{{armory.callbackUri}}/callback"
}
}
retryCount: 3
- name: Run_Security_Scanners
method: POST
uriTemplate: https://api.github.com/repos/stephenatwell/borealis-demo-1/dispatches
networkMode: direct
headers:
- key: Authorization
value: token {{secrets.github_token}}
- key: Content-Type
value: application/json
bodyTemplate:
inline: >-
{
"event_type": "checkLogs",
"client_payload": {
"callbackUri": "{{armory.callbackUri}}/callback"
}
}
retryCount: 3