Skip to content

Commit

Permalink
ci: fix push-image tasks to use the right dependency (#2765)
Browse files Browse the repository at this point in the history
Using "docker-image" as the key in the dependencies dict clashes with
what taskgraph uses for docker-worker in-tree images, so we ended up
fetching the wrong image.  Use a different key to resolve this conflict.
  • Loading branch information
jcristau committed Dec 19, 2022
1 parent 721a56e commit 6cdc642
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions taskcluster/ci/push-image/kind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ task-defaults:
command:
- /usr/local/bin/push_image.sh
fetches:
docker-image:
image:
- artifact: image.tar.zst
extract: false
scopes:
Expand All @@ -39,15 +39,15 @@ tasks:
balrog-backend:
description: "Push balrog backend docker image"
dependencies:
docker-image: build-docker-image-balrog-backend
image: build-docker-image-balrog-backend
worker:
env:
DOCKER_REPO: docker.io/mozilla/balrog
APP: backend
balrog-agent:
description: "Push balrogagent docker image"
dependencies:
docker-image: build-docker-image-balrog-agent
image: build-docker-image-balrog-agent
worker:
env:
DOCKER_REPO: docker.io/mozilla/balrogagent
Expand Down

0 comments on commit 6cdc642

Please sign in to comment.