From a5e0d26649609969b9d76fc6d78f7422d50580a3 Mon Sep 17 00:00:00 2001 From: Callum Styan Date: Mon, 25 Oct 2021 10:03:41 -0700 Subject: [PATCH] Pass repo as registry+repo as temporary workaround for drone ECR publish issues. Signed-off-by: Callum Styan --- .drone/drone.jsonnet | 2 +- .drone/drone.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.drone/drone.jsonnet b/.drone/drone.jsonnet index 703ca325056b8..b2efdbe2323bd 100644 --- a/.drone/drone.jsonnet +++ b/.drone/drone.jsonnet @@ -80,7 +80,7 @@ local lambda_promtail_ecr(app) = { image: 'cstyan/ecr', privileged: true, settings: { - repo: 'lambda-promtail', + repo: 'public.ecr.aws/grafana/lambda-promtail', registry: 'public.ecr.aws/grafana', dockerfile: 'tools/%s/Dockerfile' % app, access_key: { from_secret: ecr_key.name }, diff --git a/.drone/drone.yml b/.drone/drone.yml index c75e5b29264e3..add72a6c397d7 100644 --- a/.drone/drone.yml +++ b/.drone/drone.yml @@ -908,7 +908,7 @@ steps: dry_run: true region: us-east-1 registry: public.ecr.aws/grafana - repo: lambda-promtail + repo: public.ecr.aws/grafana/lambda-promtail secret_key: from_secret: ecr_secret_key when: @@ -931,7 +931,7 @@ steps: dry_run: false region: us-east-1 registry: public.ecr.aws/grafana - repo: lambda-promtail + repo: public.ecr.aws/grafana/lambda-promtail secret_key: from_secret: ecr_secret_key when: @@ -984,6 +984,6 @@ kind: secret name: deploy_config --- kind: signature -hmac: 2f519d332d5e2241a44b170461a9cf256dc8050de6d0a6caa99839a4b561aab5 +hmac: 55440faa2728a5b8abbd213c2cf198e01f00201ba7143391924da1b9aa02c350 ...