-
Notifications
You must be signed in to change notification settings - Fork 19
/
.drone.yml
330 lines (302 loc) · 9.67 KB
/
.drone.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
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
---
kind: pipeline
type: docker
name: build
trigger:
event:
include:
- pull_request
steps:
- name: build
image: node:18
commands:
- ./scripts/install-ci-deps-apt.sh
- make install lint test build
environment:
GCP_KEY:
from_secret: gcp_key
---
kind: pipeline
type: docker
name: publish-dev
trigger:
branch:
include:
- main
event:
include:
- push
steps:
- name: build
image: node:18
commands:
- ./scripts/install-ci-deps-apt.sh
- make install lint test build sign package-latest generate-version
environment:
GCP_KEY:
from_secret: gcp_key
GRAFANA_ACCESS_POLICY_TOKEN:
from_secret: signing_token
- name: publish to dev
image: plugins/gcs
settings:
acl: allUsers:READER
cache_control: no-store
source: ./artifacts
target: synthetic-monitoring-app/
token:
from_secret: gcs_sa_grafanalabsdev
- name: Open PR to update plugin version for all dev stacks
image: us.gcr.io/kubernetes-dev/drone/plugins/updater
settings:
config_json: |-
{
"repo_owner": "grafana",
"repo_name": "deployment_tools",
"destination_branch": "master",
"pull_request_branch_prefix": "auto-merge/synthetic-monitoring-plugin-release",
"pull_request_enabled": true,
"pull_request_existing_strategy": "ignore",
"pull_request_message": "Triggered by ${DRONE_COMMIT_LINK}. NOTE: dev does not refer directly to an environment it refers to stacks associated with the dev 'wave'. See [here](https://github.com/grafana/deployment_tools/blob/master/ksonnet/environments/hosted-grafana/waves/provisioned-plugins/README.md#waves) for more info.",
"pull_request_reviewers": ["VikaCep", "ckbedwell"],
"update_jsonnet_attribute_configs": [
{
"file_path": "ksonnet/environments/hosted-grafana/waves/provisioned-plugins/grafana-synthetic-monitoring-app/dev.libsonnet",
"jsonnet_key": "version",
"jsonnet_value_file": "plugin_version.txt"
}
]
}
github_app_id:
from_secret: updater-app-id
github_app_installation_id:
from_secret: updater-app-installation-id
github_app_private_key:
from_secret: updater-app-private-key
image_pull_secrets:
- dockerconfigjson
---
kind: pipeline
type: docker
name: publish-staging
trigger:
event:
- promote
target:
- staging
steps:
- name: build
image: node:18
commands:
- ./scripts/install-ci-deps-apt.sh
- make install lint test build sign package
environment:
GCP_KEY:
from_secret: gcp_key
GRAFANA_ACCESS_POLICY_TOKEN:
from_secret: signing_token
# Staging reads from the production GCS bucket, so we need to publish prod assets
- name: publish assets to GCS
image: plugins/gcs
settings:
acl: allUsers:READER
source: ./artifacts
target: synthetic-monitoring-app-prod/
token:
from_secret: gcs_sa_grafanalabsglobal
- name: Update staging stacks
image: us.gcr.io/kubernetes-dev/drone/plugins/updater
settings:
config_json: |-
{
"repo_owner": "grafana",
"repo_name": "deployment_tools",
"destination_branch": "master",
"pull_request_branch_prefix": "auto-merge/synthetic-monitoring-plugin",
"pull_request_enabled": true,
"pull_request_existing_strategy": "ignore",
"pull_request_message": "Triggered by ${DRONE_COMMIT_LINK}. NOTE: staging does not refer directly to an environment it refers to stacks associated with the staging 'wave'. See [here](https://github.com/grafana/deployment_tools/blob/master/ksonnet/environments/hosted-grafana/waves/provisioned-plugins/README.md#waves) for more info.",
"pull_request_reviewers": ["VikaCep", "ckbedwell"],
"update_jsonnet_attribute_configs": [
{
"file_path": "ksonnet/environments/hosted-grafana/waves/provisioned-plugins/grafana-synthetic-monitoring-app/staging.libsonnet",
"jsonnet_key": "version",
"jsonnet_value_file": "plugin_version.txt"
}
]
}
github_app_id:
from_secret: updater-app-id
github_app_installation_id:
from_secret: updater-app-installation-id
github_app_private_key:
from_secret: updater-app-private-key
image_pull_secrets:
- dockerconfigjson
---
kind: pipeline
type: docker
name: publish-canary
trigger:
event:
- promote
target:
- canary
steps:
- name: build
image: node:18
commands:
- ./scripts/install-ci-deps-apt.sh
- make install lint test build sign package
environment:
GCP_KEY:
from_secret: gcp_key
GRAFANA_ACCESS_POLICY_TOKEN:
from_secret: signing_token
- name: Open PR to update plugin version for all canary stacks
image: us.gcr.io/kubernetes-dev/drone/plugins/updater
settings:
config_json: |-
{
"repo_owner": "grafana",
"repo_name": "deployment_tools",
"destination_branch": "master",
"pull_request_branch_prefix": "ci/synthetic-monitoring-plugin",
"pull_request_enabled": true,
"pull_request_existing_strategy": "ignore",
"pull_request_message": "Triggered by ${DRONE_COMMIT_LINK}. NOTE: canary does not refer directly to an environment it refers to stacks associated with the canary 'wave'. See [here](https://github.com/grafana/deployment_tools/blob/master/ksonnet/environments/hosted-grafana/waves/provisioned-plugins/README.md#waves) for more info.",
"pull_request_reviewers": ["VikaCep", "ckbedwell"],
"update_jsonnet_attribute_configs": [
{
"file_path": "ksonnet/environments/hosted-grafana/waves/provisioned-plugins/grafana-synthetic-monitoring-app/prod-canary.libsonnet",
"jsonnet_key": "version",
"jsonnet_value_file": "plugin_version.txt"
}
]
}
github_app_id:
from_secret: updater-app-id
github_app_installation_id:
from_secret: updater-app-installation-id
github_app_private_key:
from_secret: updater-app-private-key
image_pull_secrets:
- dockerconfigjson
---
kind: pipeline
type: docker
name: publish-prod
trigger:
event:
- promote
target:
- production
steps:
- name: build
image: node:18
commands:
- ./scripts/install-ci-deps-apt.sh
- make install lint test build sign package
environment:
GCP_KEY:
from_secret: gcp_key
GRAFANA_ACCESS_POLICY_TOKEN:
from_secret: signing_token
GITHUB_TOKEN:
from_secret: github_token
- name: Open PR to update plugin version for all production stacks
image: us.gcr.io/kubernetes-dev/drone/plugins/updater
settings:
config_json: |-
{
"repo_owner": "grafana",
"repo_name": "deployment_tools",
"destination_branch": "master",
"pull_request_branch_prefix": "auto-merge/synthetic-monitoring-plugin",
"pull_request_enabled": true,
"pull_request_existing_strategy": "ignore",
"pull_request_message": "Triggered by ${DRONE_COMMIT_LINK}. NOTE: prod does not refer directly to an environment it refers to stacks associated with the prod 'wave'. See [here](https://github.com/grafana/deployment_tools/blob/master/ksonnet/environments/hosted-grafana/waves/provisioned-plugins/README.md#waves) for more info.",
"pull_request_reviewers": ["VikaCep", "ckbedwell"],
"update_jsonnet_attribute_configs": [
{
"file_path": "ksonnet/environments/hosted-grafana/waves/provisioned-plugins/grafana-synthetic-monitoring-app/prod.libsonnet",
"jsonnet_key": "version",
"jsonnet_value_file": "plugin_version.txt"
},
{
"file_path": "ksonnet/environments/hosted-grafana/waves/provisioned-plugins/grafana-synthetic-monitoring-app/prod-canary.libsonnet",
"jsonnet_key": "version",
"jsonnet_value_file": "plugin_version.txt"
}
]
}
github_app_id:
from_secret: updater-app-id
github_app_installation_id:
from_secret: updater-app-installation-id
github_app_private_key:
from_secret: updater-app-private-key
- name: publish plugin to grafana.com (release)
image: ubuntu:latest
environment:
GRAFANA_API_KEY:
from_secret: signing_token
commands:
- ./scripts/install-ci-deps-apt.sh
- ls -al ./scripts
- ./scripts/publish-gcom.sh
image_pull_secrets:
- dockerconfigjson
# Import secrets from Vault
---
kind: secret
name: gcs_sa_grafanalabsdev
get:
path: infra/data/ci/synthetic-monitoring-app/gcs-service-account-dev
name: credentials.json
---
kind: secret
name: gcs_sa_grafanalabsglobal
get:
path: infra/data/ci/synthetic-monitoring-app/gcs-service-account-global
name: credentials.json
---
kind: secret
name: gh_token
get:
path: infra/data/ci/github/grafanabot
name: pat
---
kind: secret
name: dockerconfigjson
get:
path: secret/data/common/gcr
name: .dockerconfigjson
---
kind: secret
name: updater-app-id
get:
name: app-id
path: infra/data/ci/github/updater-app
---
kind: secret
name: updater-app-installation-id
get:
name: app-installation-id
path: infra/data/ci/github/updater-app
---
kind: secret
name: updater-app-private-key
get:
name: private-key
path: infra/data/ci/github/updater-app
---
get:
name: gcp_key
path: infra/data/ci/drone-plugins
kind: secret
name: gcp_key
---
kind: signature
hmac: 5ea4dd99d229f1949320b0a44266432f838ca13721ae2a48713b0e73060baece
...