Skip to content

Commit

Permalink
fix secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
AgnesToulet committed Oct 8, 2024
1 parent b70c9c1 commit 59deec4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -488,20 +488,20 @@ kind: secret
name: gcr
---
get:
name: github_app_id
path: ci/data/repo/grafana/grafana-image-renderer/github_actions
name: app-id
path: ci/repo/grafana/grafana-image-renderer/github-app
kind: secret
name: github_app_id
---
get:
name: github_app_private_key
path: ci/data/repo/grafana/grafana-image-renderer/github_actions
name: private-key
path: ci/repo/grafana/grafana-image-renderer/github-app
kind: secret
name: github_app_private_key
---
get:
name: github_app_installation_id
path: ci/data/repo/grafana/grafana-image-renderer/github_actions
name: app-installation-id
path: ci/repo/grafana/grafana-image-renderer/github-app
kind: secret
name: github_app_installation_id
---
Expand Down Expand Up @@ -530,6 +530,6 @@ kind: secret
name: gar
---
kind: signature
hmac: 84fba26558ebea8e06f1368d449827c9afbf73f909e73f79686453a7b0c5d1a0
hmac: e144331781cee221dacb123af3261dbcf1c349bc43ff7780ddca8aeb3a29c16d

...
6 changes: 3 additions & 3 deletions scripts/drone/vault.star
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ def vault_secret(name, path, key):
def secrets():
return [
vault_secret(gcr_pull_secret, 'secret/data/common/gcr', '.dockerconfigjson'),
vault_secret('github_app_id', 'ci/data/repo/grafana/grafana-image-renderer/github_actions', 'github_app_id'),
vault_secret('github_app_private_key', 'ci/data/repo/grafana/grafana-image-renderer/github_actions', 'github_app_private_key'),
vault_secret('github_app_installation_id', 'ci/data/repo/grafana/grafana-image-renderer/github_actions', 'github_app_installation_id'),
vault_secret('github_app_id', 'ci/repo/grafana/grafana-image-renderer/github-app', 'app-id'),
vault_secret('github_app_private_key', 'ci/repo/grafana/grafana-image-renderer/github-app', 'private-key'),
vault_secret('github_app_installation_id', 'ci/repo/grafana/grafana-image-renderer/github-app', 'app-installation-id'),
vault_secret('gcom_publish_token', 'infra/data/ci/drone-plugins', 'gcom_publish_token'),
vault_secret('grafana_api_key', 'infra/data/ci/drone-plugins', 'grafana_api_key'),
vault_secret('srcclr_api_token', 'infra/data/ci/drone-plugins', 'srcclr_api_token'),
Expand Down

0 comments on commit 59deec4

Please sign in to comment.