[9.3.x] CI: Move some build settings (#64491) (#64516)

Backporting https://github.com/grafana/grafana/pull/64491.

* Move some build settings to Vault

* CI: Remove reference to DOWNSTREAM_REPO as it isn't used

(cherry picked from commit 4b241804b4)
This commit is contained in:
Horst Gutmann
2023-03-09 08:35:08 -05:00
committed by GitHub
parent 4deceb0aa7
commit 8c1aa4e50b
3 changed files with 56 additions and 4 deletions
-1
View File
@@ -1481,7 +1481,6 @@ def trigger_test_release():
"image": build_image,
"environment": {
"GITHUB_TOKEN": from_secret("github_token_pr"),
"DOWNSTREAM_REPO": from_secret("downstream"),
"TEST_TAG": "v0.0.0-test",
},
"commands": [
+25
View File
@@ -94,4 +94,29 @@ def secrets():
"secret/data/common/aws-marketplace",
"aws_secret_access_key",
),
vault_secret(
"security_dest_bucket",
"infra/data/ci/grafana-release-eng/security-bucket",
"bucket",
),
vault_secret(
"static_asset_editions",
"infra/data/ci/grafana-release-eng/artifact-publishing",
"static_asset_editions",
),
vault_secret(
"enterprise2_security_prefix",
"infra/data/ci/grafana-release-eng/enterprise2",
"security_prefix",
),
vault_secret(
"enterprise2-cdn-path",
"infra/data/ci/grafana-release-eng/enterprise2",
"cdn_path",
),
vault_secret(
"enterprise2_security_prefix",
"infra/data/ci/grafana-release-eng/enterprise2",
"security_prefix",
),
]