Add GCP_KEY secret to the artifacts-page pipeline (#54013) (#54055)

(cherry picked from commit ceb32a7506)
This commit is contained in:
Dimitris Sotirakis
2022-08-23 07:44:12 -05:00
committed by GitHub
parent 9bea66845a
commit a8855cd7dc
2 changed files with 7 additions and 1 deletions
+4 -1
View File
@@ -3584,6 +3584,9 @@ steps:
- ./bin/grabpl artifacts-page
depends_on:
- grabpl
environment:
GCP_KEY:
from_secret: gcp_key
image: grafana/build-container:1.5.9
name: artifacts-page
trigger:
@@ -5018,6 +5021,6 @@ kind: secret
name: gcp_upload_artifacts_key
---
kind: signature
hmac: 1ca37da2d5a2ca7290349339aaa494e24e51e27699dca658813d99abc55ee63c
hmac: 493ba0fa59c2445920201f264a935913f13688a1d90404cd92a22a79c871d3d3
...
+3
View File
@@ -1198,6 +1198,9 @@ def artifacts_page_step():
'depends_on': [
'grabpl',
],
'environment': {
'GCP_KEY': from_secret('gcp_key'),
},
'commands': [
'./bin/grabpl artifacts-page',
],