Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ECR Public? #124

Open
tianon opened this issue Jul 12, 2021 · 2 comments
Open

ECR Public? #124

tianon opened this issue Jul 12, 2021 · 2 comments

Comments

@tianon
Copy link
Contributor

tianon commented Jul 12, 2021

Has anyone successfully used manifest-tool against ECR Public? I'm trying both 1.0 and 2.0 and coming up short, and hoping maybe there's something I'm doing wrong, but both versions are failing in different ways with the same YAML.

Here's an example YAML, for reference (if you have an ECR Public repository, you should be able to swap this first image: and test for yourself 😇):

image: public.ecr.aws/debian/debian:bullseye
tags:
  - bullseye-20210621
manifests:
  - image: public.ecr.aws/debian/amd64:bullseye
  - image: public.ecr.aws/debian/armel:bullseye
  - image: public.ecr.aws/debian/armhf:bullseye
  - image: public.ecr.aws/debian/arm64:bullseye
  - image: public.ecr.aws/debian/i386:bullseye
  - image: public.ecr.aws/debian/mips64el:bullseye
  - image: public.ecr.aws/debian/ppc64el:bullseye
  - image: public.ecr.aws/debian/s390x:bullseye

(I have a whole series of very similar YAMLs, but this is the first one.)

In both cases I'm invoking via manifest-tool --debug --username AWS --password "$token" push from-spec --ignore-missing manifest.yml (where $token is acquired via aws ecr-public get-login-password --region us-east-1, and has been used successfully in this same way via ctr for pushing the non-manifest-list images).

2.0 debug logs:
time="2021-07-10T22:31:30Z" level=info msg="Retrieving digests of member images"
time="2021-07-10T22:31:30Z" level=debug msg=resolving host=public.ecr.aws
time="2021-07-10T22:31:30Z" level=debug msg="do request" host=public.ecr.aws request.header.accept="application/vnd.docker.distribution.manifest.v2+json, application/vnd.docker.distribution.manifest.list.v2+json, application/vnd.oci.image.manifest.v1+json, application/vnd.oci.image.index.v1+json, */*" request.header.user-agent=containerd/1.5.0-rc.1+unknown request.method=HEAD url="https://public.ecr.aws/v2/debian/amd64/manifests/bullseye"
time="2021-07-10T22:31:31Z" level=debug msg="fetch response received" host=public.ecr.aws response.header.content-length=58 response.header.content-type="application/json; charset=utf-8" response.header.date="Sat, 10 Jul 2021 22:31:31 GMT" response.header.docker-distribution-api-version=registry/2.0 response.header.www-authenticate="Bearer realm=\"https://public.ecr.aws/token/\",service=\"public.ecr.aws\",scope=\"aws\"" response.status="401 Unauthorized" url="https://public.ecr.aws/v2/debian/amd64/manifests/bullseye"
time="2021-07-10T22:31:31Z" level=debug msg=Unauthorized header="Bearer realm=\"https://public.ecr.aws/token/\",service=\"public.ecr.aws\",scope=\"aws\"" host=public.ecr.aws
time="2021-07-10T22:31:31Z" level=debug msg="do request" host=public.ecr.aws request.header.accept="application/vnd.docker.distribution.manifest.v2+json, application/vnd.docker.distribution.manifest.list.v2+json, application/vnd.oci.image.manifest.v1+json, application/vnd.oci.image.index.v1+json, */*" request.header.user-agent=containerd/1.5.0-rc.1+unknown request.method=HEAD url="https://public.ecr.aws/v2/debian/amd64/manifests/bullseye"
time="2021-07-10T22:31:31Z" level=debug msg="fetch response received" host=public.ecr.aws response.header.content-length=429 response.header.content-type=application/vnd.docker.distribution.manifest.v2+json response.header.date="Sat, 10 Jul 2021 22:31:31 GMT" response.header.docker-content-digest="sha256:33e8e98400de9f71db757d06cc58c0e07c108c6aa8212da59102e3559bf9a1f6" response.header.docker-distribution-api-version=registry/2.0 response.status="200 OK" url="https://public.ecr.aws/v2/debian/amd64/manifests/bullseye"
time="2021-07-10T22:31:31Z" level=debug msg=resolved desc.digest="sha256:33e8e98400de9f71db757d06cc58c0e07c108c6aa8212da59102e3559bf9a1f6" host=public.ecr.aws
time="2021-07-10T22:31:31Z" level=debug msg=fetch digest="sha256:33e8e98400de9f71db757d06cc58c0e07c108c6aa8212da59102e3559bf9a1f6" mediatype=application/vnd.docker.distribution.manifest.v2+json size=429
time="2021-07-10T22:31:31Z" level=debug msg="do request" digest="sha256:33e8e98400de9f71db757d06cc58c0e07c108c6aa8212da59102e3559bf9a1f6" mediatype=application/vnd.docker.distribution.manifest.v2+json request.header.accept="application/vnd.docker.distribution.manifest.v2+json, */*" request.header.user-agent=containerd/1.5.0-rc.1+unknown request.method=GET size=429 url="https://public.ecr.aws/v2/debian/amd64/manifests/sha256:33e8e98400de9f71db757d06cc58c0e07c108c6aa8212da59102e3559bf9a1f6"
time="2021-07-10T22:31:31Z" level=debug msg="fetch response received" digest="sha256:33e8e98400de9f71db757d06cc58c0e07c108c6aa8212da59102e3559bf9a1f6" mediatype=application/vnd.docker.distribution.manifest.v2+json response.header.content-length=429 response.header.content-type=application/vnd.docker.distribution.manifest.v2+json response.header.date="Sat, 10 Jul 2021 22:31:31 GMT" response.header.docker-distribution-api-version=registry/2.0 response.status="200 OK" size=429 url="https://public.ecr.aws/v2/debian/amd64/manifests/sha256:33e8e98400de9f71db757d06cc58c0e07c108c6aa8212da59102e3559bf9a1f6"
time="2021-07-10T22:31:31Z" level=debug msg=fetch digest="sha256:f493583facd7ea0008e0a87c92f759047b3a82397113dd295a52057fcff3a7d5" mediatype=application/vnd.docker.container.image.v1+json size=453
time="2021-07-10T22:31:31Z" level=debug msg="do request" digest="sha256:f493583facd7ea0008e0a87c92f759047b3a82397113dd295a52057fcff3a7d5" mediatype=application/vnd.docker.container.image.v1+json request.header.accept="application/vnd.docker.container.image.v1+json, */*" request.header.user-agent=containerd/1.5.0-rc.1+unknown request.method=GET size=453 url="https://public.ecr.aws/v2/debian/amd64/blobs/sha256:f493583facd7ea0008e0a87c92f759047b3a82397113dd295a52057fcff3a7d5"
time="2021-07-10T22:31:31Z" level=debug msg="fetch response received" digest="sha256:f493583facd7ea0008e0a87c92f759047b3a82397113dd295a52057fcff3a7d5" mediatype=application/vnd.docker.container.image.v1+json response.header.accept-ranges=bytes response.header.age=306 response.header.content-length=453 response.header.content-type=application/octet-stream response.header.date="Sat, 10 Jul 2021 22:26:26 GMT" response.header.etag="\"3e1088372efc5b642e943bb68d9c078a-1\"" response.header.last-modified="Fri, 09 Jul 2021 23:13:52 GMT" response.header.server=AmazonS3 response.header.via="1.1 c1c7bd66e338154bf556b9c8414debe9.cloudfront.net (CloudFront)" response.header.x-amz-cf-id="4GPZXUd6Y2Hgom031YFNqyTsTi6SAqELm_uguKjyvsWkMpzJ6ED6jQ==" response.header.x-amz-cf-pop=HIO50-C2 response.header.x-amz-server-side-encryption=AES256 response.header.x-amz-version-id=GgK7gcjkSCIM6gT8plWkeZeNl83xt9wU response.header.x-cache="Hit from cloudfront" response.status="200 OK" size=453 url="https://public.ecr.aws/v2/debian/amd64/blobs/sha256:f493583facd7ea0008e0a87c92f759047b3a82397113dd295a52057fcff3a7d5"
time="2021-07-10T22:31:31Z" level=debug msg=resolving host=public.ecr.aws
time="2021-07-10T22:31:31Z" level=debug msg="do request" host=public.ecr.aws request.header.accept="application/vnd.docker.distribution.manifest.v2+json, application/vnd.docker.distribution.manifest.list.v2+json, application/vnd.oci.image.manifest.v1+json, application/vnd.oci.image.index.v1+json, */*" request.header.user-agent=containerd/1.5.0-rc.1+unknown request.method=HEAD url="https://public.ecr.aws/v2/debian/armel/manifests/bullseye"
time="2021-07-10T22:31:32Z" level=debug msg="fetch response received" host=public.ecr.aws response.header.content-length=429 response.header.content-type=application/vnd.docker.distribution.manifest.v2+json response.header.date="Sat, 10 Jul 2021 22:31:32 GMT" response.header.docker-content-digest="sha256:e63bc6535e056306295f95742c47faf369d33c922af24a1a6bc7c21f636bf3ee" response.header.docker-distribution-api-version=registry/2.0 response.status="200 OK" url="https://public.ecr.aws/v2/debian/armel/manifests/bullseye"
time="2021-07-10T22:31:32Z" level=debug msg=resolved desc.digest="sha256:e63bc6535e056306295f95742c47faf369d33c922af24a1a6bc7c21f636bf3ee" host=public.ecr.aws
time="2021-07-10T22:31:32Z" level=debug msg=fetch digest="sha256:e63bc6535e056306295f95742c47faf369d33c922af24a1a6bc7c21f636bf3ee" mediatype=application/vnd.docker.distribution.manifest.v2+json size=429
time="2021-07-10T22:31:32Z" level=debug msg="do request" digest="sha256:e63bc6535e056306295f95742c47faf369d33c922af24a1a6bc7c21f636bf3ee" mediatype=application/vnd.docker.distribution.manifest.v2+json request.header.accept="application/vnd.docker.distribution.manifest.v2+json, */*" request.header.user-agent=containerd/1.5.0-rc.1+unknown request.method=GET size=429 url="https://public.ecr.aws/v2/debian/armel/manifests/sha256:e63bc6535e056306295f95742c47faf369d33c922af24a1a6bc7c21f636bf3ee"
time="2021-07-10T22:31:32Z" level=debug msg="fetch response received" digest="sha256:e63bc6535e056306295f95742c47faf369d33c922af24a1a6bc7c21f636bf3ee" mediatype=application/vnd.docker.distribution.manifest.v2+json response.header.content-length=429 response.header.content-type=application/vnd.docker.distribution.manifest.v2+json response.header.date="Sat, 10 Jul 2021 22:31:32 GMT" response.header.docker-distribution-api-version=registry/2.0 response.status="200 OK" size=429 url="https://public.ecr.aws/v2/debian/armel/manifests/sha256:e63bc6535e056306295f95742c47faf369d33c922af24a1a6bc7c21f636bf3ee"
time="2021-07-10T22:31:32Z" level=debug msg=fetch digest="sha256:c56e1f0fb439e41795f83b3be708b85b47dd04e3800838d57b61728c999f7f39" mediatype=application/vnd.docker.container.image.v1+json size=466
time="2021-07-10T22:31:32Z" level=debug msg="do request" digest="sha256:c56e1f0fb439e41795f83b3be708b85b47dd04e3800838d57b61728c999f7f39" mediatype=application/vnd.docker.container.image.v1+json request.header.accept="application/vnd.docker.container.image.v1+json, */*" request.header.user-agent=containerd/1.5.0-rc.1+unknown request.method=GET size=466 url="https://public.ecr.aws/v2/debian/armel/blobs/sha256:c56e1f0fb439e41795f83b3be708b85b47dd04e3800838d57b61728c999f7f39"
time="2021-07-10T22:31:32Z" level=debug msg="fetch response received" digest="sha256:c56e1f0fb439e41795f83b3be708b85b47dd04e3800838d57b61728c999f7f39" mediatype=application/vnd.docker.container.image.v1+json response.header.accept-ranges=bytes response.header.age=306 response.header.content-length=466 response.header.content-type=application/octet-stream response.header.date="Sat, 10 Jul 2021 22:26:27 GMT" response.header.etag="\"4422126726612b85157b424ddb55a031-1\"" response.header.last-modified="Sat, 10 Jul 2021 21:17:10 GMT" response.header.server=AmazonS3 response.header.via="1.1 c1c7bd66e338154bf556b9c8414debe9.cloudfront.net (CloudFront)" response.header.x-amz-cf-id="v66HrdGYU2-TqWuOrBWsDVkHEsSYrqrZMet0zRGjgwaG9cwGthhKIg==" response.header.x-amz-cf-pop=HIO50-C2 response.header.x-amz-server-side-encryption=AES256 response.header.x-amz-version-id=Cnv6eayf.6cBF4hrGc6UGduitZ4U9vCB response.header.x-cache="Hit from cloudfront" response.status="200 OK" size=466 url="https://public.ecr.aws/v2/debian/armel/blobs/sha256:c56e1f0fb439e41795f83b3be708b85b47dd04e3800838d57b61728c999f7f39"
time="2021-07-10T22:31:32Z" level=debug msg=resolving host=public.ecr.aws
time="2021-07-10T22:31:32Z" level=debug msg="do request" host=public.ecr.aws request.header.accept="application/vnd.docker.distribution.manifest.v2+json, application/vnd.docker.distribution.manifest.list.v2+json, application/vnd.oci.image.manifest.v1+json, application/vnd.oci.image.index.v1+json, */*" request.header.user-agent=containerd/1.5.0-rc.1+unknown request.method=HEAD url="https://public.ecr.aws/v2/debian/armhf/manifests/bullseye"
time="2021-07-10T22:31:32Z" level=debug msg="fetch response received" host=public.ecr.aws response.header.content-length=429 response.header.content-type=application/vnd.docker.distribution.manifest.v2+json response.header.date="Sat, 10 Jul 2021 22:31:32 GMT" response.header.docker-content-digest="sha256:0e4cd553eecdbb95ff49284c9e64614cf51be0bdf2756c3128b71ba713299fad" response.header.docker-distribution-api-version=registry/2.0 response.status="200 OK" url="https://public.ecr.aws/v2/debian/armhf/manifests/bullseye"
time="2021-07-10T22:31:32Z" level=debug msg=resolved desc.digest="sha256:0e4cd553eecdbb95ff49284c9e64614cf51be0bdf2756c3128b71ba713299fad" host=public.ecr.aws
time="2021-07-10T22:31:32Z" level=debug msg=fetch digest="sha256:0e4cd553eecdbb95ff49284c9e64614cf51be0bdf2756c3128b71ba713299fad" mediatype=application/vnd.docker.distribution.manifest.v2+json size=429
time="2021-07-10T22:31:32Z" level=debug msg="do request" digest="sha256:0e4cd553eecdbb95ff49284c9e64614cf51be0bdf2756c3128b71ba713299fad" mediatype=application/vnd.docker.distribution.manifest.v2+json request.header.accept="application/vnd.docker.distribution.manifest.v2+json, */*" request.header.user-agent=containerd/1.5.0-rc.1+unknown request.method=GET size=429 url="https://public.ecr.aws/v2/debian/armhf/manifests/sha256:0e4cd553eecdbb95ff49284c9e64614cf51be0bdf2756c3128b71ba713299fad"
time="2021-07-10T22:31:32Z" level=debug msg="fetch response received" digest="sha256:0e4cd553eecdbb95ff49284c9e64614cf51be0bdf2756c3128b71ba713299fad" mediatype=application/vnd.docker.distribution.manifest.v2+json response.header.content-length=429 response.header.content-type=application/vnd.docker.distribution.manifest.v2+json response.header.date="Sat, 10 Jul 2021 22:31:32 GMT" response.header.docker-distribution-api-version=registry/2.0 response.status="200 OK" size=429 url="https://public.ecr.aws/v2/debian/armhf/manifests/sha256:0e4cd553eecdbb95ff49284c9e64614cf51be0bdf2756c3128b71ba713299fad"
time="2021-07-10T22:31:32Z" level=debug msg=fetch digest="sha256:354af0a15484fce679fbf48b7b144fc9b1dd102f94ecca3e8dbf9abc3badd3d1" mediatype=application/vnd.docker.container.image.v1+json size=466
time="2021-07-10T22:31:32Z" level=debug msg="do request" digest="sha256:354af0a15484fce679fbf48b7b144fc9b1dd102f94ecca3e8dbf9abc3badd3d1" mediatype=application/vnd.docker.container.image.v1+json request.header.accept="application/vnd.docker.container.image.v1+json, */*" request.header.user-agent=containerd/1.5.0-rc.1+unknown request.method=GET size=466 url="https://public.ecr.aws/v2/debian/armhf/blobs/sha256:354af0a15484fce679fbf48b7b144fc9b1dd102f94ecca3e8dbf9abc3badd3d1"
time="2021-07-10T22:31:32Z" level=debug msg="fetch response received" digest="sha256:354af0a15484fce679fbf48b7b144fc9b1dd102f94ecca3e8dbf9abc3badd3d1" mediatype=application/vnd.docker.container.image.v1+json response.header.accept-ranges=bytes response.header.age=305 response.header.content-length=466 response.header.content-type=application/octet-stream response.header.date="Sat, 10 Jul 2021 22:26:28 GMT" response.header.etag="\"e52c1a3701149dc170a9fe68875c3e7d-1\"" response.header.last-modified="Sat, 10 Jul 2021 20:55:36 GMT" response.header.server=AmazonS3 response.header.via="1.1 c1c7bd66e338154bf556b9c8414debe9.cloudfront.net (CloudFront)" response.header.x-amz-cf-id="xkD7oPBLW5FKlqx-VV-8vM2ByIul0FL93dhhsjLrewlz0Ah8hKAihQ==" response.header.x-amz-cf-pop=HIO50-C2 response.header.x-amz-server-side-encryption=AES256 response.header.x-amz-version-id=p.I_2WpG2eDCVcDyexVL1Vfi8Mtyi0Y0 response.header.x-cache="Hit from cloudfront" response.status="200 OK" size=466 url="https://public.ecr.aws/v2/debian/armhf/blobs/sha256:354af0a15484fce679fbf48b7b144fc9b1dd102f94ecca3e8dbf9abc3badd3d1"
time="2021-07-10T22:31:32Z" level=debug msg=resolving host=public.ecr.aws
time="2021-07-10T22:31:32Z" level=debug msg="do request" host=public.ecr.aws request.header.accept="application/vnd.docker.distribution.manifest.v2+json, application/vnd.docker.distribution.manifest.list.v2+json, application/vnd.oci.image.manifest.v1+json, application/vnd.oci.image.index.v1+json, */*" request.header.user-agent=containerd/1.5.0-rc.1+unknown request.method=HEAD url="https://public.ecr.aws/v2/debian/arm64/manifests/bullseye"
time="2021-07-10T22:31:33Z" level=debug msg="fetch response received" host=public.ecr.aws response.header.content-length=429 response.header.content-type=application/vnd.docker.distribution.manifest.v2+json response.header.date="Sat, 10 Jul 2021 22:31:33 GMT" response.header.docker-content-digest="sha256:b1299e622dae9fe202eb51c14fe8e0f1536f8734f468e6a6e2afe4896015c36e" response.header.docker-distribution-api-version=registry/2.0 response.status="200 OK" url="https://public.ecr.aws/v2/debian/arm64/manifests/bullseye"
time="2021-07-10T22:31:33Z" level=debug msg=resolved desc.digest="sha256:b1299e622dae9fe202eb51c14fe8e0f1536f8734f468e6a6e2afe4896015c36e" host=public.ecr.aws
time="2021-07-10T22:31:33Z" level=debug msg=fetch digest="sha256:b1299e622dae9fe202eb51c14fe8e0f1536f8734f468e6a6e2afe4896015c36e" mediatype=application/vnd.docker.distribution.manifest.v2+json size=429
time="2021-07-10T22:31:33Z" level=debug msg="do request" digest="sha256:b1299e622dae9fe202eb51c14fe8e0f1536f8734f468e6a6e2afe4896015c36e" mediatype=application/vnd.docker.distribution.manifest.v2+json request.header.accept="application/vnd.docker.distribution.manifest.v2+json, */*" request.header.user-agent=containerd/1.5.0-rc.1+unknown request.method=GET size=429 url="https://public.ecr.aws/v2/debian/arm64/manifests/sha256:b1299e622dae9fe202eb51c14fe8e0f1536f8734f468e6a6e2afe4896015c36e"
time="2021-07-10T22:31:33Z" level=debug msg="fetch response received" digest="sha256:b1299e622dae9fe202eb51c14fe8e0f1536f8734f468e6a6e2afe4896015c36e" mediatype=application/vnd.docker.distribution.manifest.v2+json response.header.content-length=429 response.header.content-type=application/vnd.docker.distribution.manifest.v2+json response.header.date="Sat, 10 Jul 2021 22:31:33 GMT" response.header.docker-distribution-api-version=registry/2.0 response.status="200 OK" size=429 url="https://public.ecr.aws/v2/debian/arm64/manifests/sha256:b1299e622dae9fe202eb51c14fe8e0f1536f8734f468e6a6e2afe4896015c36e"
time="2021-07-10T22:31:33Z" level=debug msg=fetch digest="sha256:3b897f497731bbf2168a2e8400434f58e2f75ded37bfa23c9948879249c7e6f2" mediatype=application/vnd.docker.container.image.v1+json size=468
time="2021-07-10T22:31:33Z" level=debug msg="do request" digest="sha256:3b897f497731bbf2168a2e8400434f58e2f75ded37bfa23c9948879249c7e6f2" mediatype=application/vnd.docker.container.image.v1+json request.header.accept="application/vnd.docker.container.image.v1+json, */*" request.header.user-agent=containerd/1.5.0-rc.1+unknown request.method=GET size=468 url="https://public.ecr.aws/v2/debian/arm64/blobs/sha256:3b897f497731bbf2168a2e8400434f58e2f75ded37bfa23c9948879249c7e6f2"
time="2021-07-10T22:31:33Z" level=debug msg="fetch response received" digest="sha256:3b897f497731bbf2168a2e8400434f58e2f75ded37bfa23c9948879249c7e6f2" mediatype=application/vnd.docker.container.image.v1+json response.header.accept-ranges=bytes response.header.age=305 response.header.content-length=468 response.header.content-type=application/octet-stream response.header.date="Sat, 10 Jul 2021 22:26:28 GMT" response.header.etag="\"05e129e78905c5525dd2b0e78b8ada63-1\"" response.header.last-modified="Sat, 10 Jul 2021 21:04:54 GMT" response.header.server=AmazonS3 response.header.via="1.1 c1c7bd66e338154bf556b9c8414debe9.cloudfront.net (CloudFront)" response.header.x-amz-cf-id="qQ78IwQBqXLhobHbICvAXoVXT9f6Mb7SbCMi90YdJfqHfvxFPjdOCQ==" response.header.x-amz-cf-pop=HIO50-C2 response.header.x-amz-server-side-encryption=AES256 response.header.x-amz-version-id=mn8appdXhsaR3FWEJGCU9qk1ciDwHXZ_ response.header.x-cache="Hit from cloudfront" response.status="200 OK" size=468 url="https://public.ecr.aws/v2/debian/arm64/blobs/sha256:3b897f497731bbf2168a2e8400434f58e2f75ded37bfa23c9948879249c7e6f2"
time="2021-07-10T22:31:33Z" level=debug msg=resolving host=public.ecr.aws
time="2021-07-10T22:31:33Z" level=debug msg="do request" host=public.ecr.aws request.header.accept="application/vnd.docker.distribution.manifest.v2+json, application/vnd.docker.distribution.manifest.list.v2+json, application/vnd.oci.image.manifest.v1+json, application/vnd.oci.image.index.v1+json, */*" request.header.user-agent=containerd/1.5.0-rc.1+unknown request.method=HEAD url="https://public.ecr.aws/v2/debian/i386/manifests/bullseye"
time="2021-07-10T22:31:33Z" level=debug msg="fetch response received" host=public.ecr.aws response.header.content-length=429 response.header.content-type=application/vnd.docker.distribution.manifest.v2+json response.header.date="Sat, 10 Jul 2021 22:31:33 GMT" response.header.docker-content-digest="sha256:d80ca89b23183ee1f155bee8084bf6a3f1096090ffd43ae9f97dc7aabc19d3d8" response.header.docker-distribution-api-version=registry/2.0 response.status="200 OK" url="https://public.ecr.aws/v2/debian/i386/manifests/bullseye"
time="2021-07-10T22:31:33Z" level=debug msg=resolved desc.digest="sha256:d80ca89b23183ee1f155bee8084bf6a3f1096090ffd43ae9f97dc7aabc19d3d8" host=public.ecr.aws
time="2021-07-10T22:31:33Z" level=debug msg=fetch digest="sha256:d80ca89b23183ee1f155bee8084bf6a3f1096090ffd43ae9f97dc7aabc19d3d8" mediatype=application/vnd.docker.distribution.manifest.v2+json size=429
time="2021-07-10T22:31:33Z" level=debug msg="do request" digest="sha256:d80ca89b23183ee1f155bee8084bf6a3f1096090ffd43ae9f97dc7aabc19d3d8" mediatype=application/vnd.docker.distribution.manifest.v2+json request.header.accept="application/vnd.docker.distribution.manifest.v2+json, */*" request.header.user-agent=containerd/1.5.0-rc.1+unknown request.method=GET size=429 url="https://public.ecr.aws/v2/debian/i386/manifests/sha256:d80ca89b23183ee1f155bee8084bf6a3f1096090ffd43ae9f97dc7aabc19d3d8"
time="2021-07-10T22:31:33Z" level=debug msg="fetch response received" digest="sha256:d80ca89b23183ee1f155bee8084bf6a3f1096090ffd43ae9f97dc7aabc19d3d8" mediatype=application/vnd.docker.distribution.manifest.v2+json response.header.content-length=429 response.header.content-type=application/vnd.docker.distribution.manifest.v2+json response.header.date="Sat, 10 Jul 2021 22:31:33 GMT" response.header.docker-distribution-api-version=registry/2.0 response.status="200 OK" size=429 url="https://public.ecr.aws/v2/debian/i386/manifests/sha256:d80ca89b23183ee1f155bee8084bf6a3f1096090ffd43ae9f97dc7aabc19d3d8"
time="2021-07-10T22:31:33Z" level=debug msg=fetch digest="sha256:87bd2381f192dfba0c24e34dc52aa88c8bf983c2b37b09906b2005c3c820d0b7" mediatype=application/vnd.docker.container.image.v1+json size=450
time="2021-07-10T22:31:33Z" level=debug msg="do request" digest="sha256:87bd2381f192dfba0c24e34dc52aa88c8bf983c2b37b09906b2005c3c820d0b7" mediatype=application/vnd.docker.container.image.v1+json request.header.accept="application/vnd.docker.container.image.v1+json, */*" request.header.user-agent=containerd/1.5.0-rc.1+unknown request.method=GET size=450 url="https://public.ecr.aws/v2/debian/i386/blobs/sha256:87bd2381f192dfba0c24e34dc52aa88c8bf983c2b37b09906b2005c3c820d0b7"
time="2021-07-10T22:31:33Z" level=debug msg="fetch response received" digest="sha256:87bd2381f192dfba0c24e34dc52aa88c8bf983c2b37b09906b2005c3c820d0b7" mediatype=application/vnd.docker.container.image.v1+json response.header.accept-ranges=bytes response.header.age=304 response.header.content-length=450 response.header.content-type=application/octet-stream response.header.date="Sat, 10 Jul 2021 22:26:29 GMT" response.header.etag="\"c77863690636692cba78b3bbe99ea6e2-1\"" response.header.last-modified="Sat, 10 Jul 2021 20:53:00 GMT" response.header.server=AmazonS3 response.header.via="1.1 c1c7bd66e338154bf556b9c8414debe9.cloudfront.net (CloudFront)" response.header.x-amz-cf-id="6-WIM189oxETLioI_jAe8UBGGj-Jam0y_bCg5d67RU6NjOf0nKaRHQ==" response.header.x-amz-cf-pop=HIO50-C2 response.header.x-amz-server-side-encryption=AES256 response.header.x-amz-version-id=pJs76j0mMBZXFsn04XUaR3HKy9fcS4yu response.header.x-cache="Hit from cloudfront" response.status="200 OK" size=450 url="https://public.ecr.aws/v2/debian/i386/blobs/sha256:87bd2381f192dfba0c24e34dc52aa88c8bf983c2b37b09906b2005c3c820d0b7"
time="2021-07-10T22:31:33Z" level=debug msg=resolving host=public.ecr.aws
time="2021-07-10T22:31:33Z" level=debug msg="do request" host=public.ecr.aws request.header.accept="application/vnd.docker.distribution.manifest.v2+json, application/vnd.docker.distribution.manifest.list.v2+json, application/vnd.oci.image.manifest.v1+json, application/vnd.oci.image.index.v1+json, */*" request.header.user-agent=containerd/1.5.0-rc.1+unknown request.method=HEAD url="https://public.ecr.aws/v2/debian/mips64el/manifests/bullseye"
time="2021-07-10T22:31:34Z" level=debug msg="fetch response received" host=public.ecr.aws response.header.content-length=429 response.header.content-type=application/vnd.docker.distribution.manifest.v2+json response.header.date="Sat, 10 Jul 2021 22:31:34 GMT" response.header.docker-content-digest="sha256:8554bd94e4398d5e00dba4c59aa3a8c043c69c24a774361501f4404453ea57d6" response.header.docker-distribution-api-version=registry/2.0 response.status="200 OK" url="https://public.ecr.aws/v2/debian/mips64el/manifests/bullseye"
time="2021-07-10T22:31:34Z" level=debug msg=resolved desc.digest="sha256:8554bd94e4398d5e00dba4c59aa3a8c043c69c24a774361501f4404453ea57d6" host=public.ecr.aws
time="2021-07-10T22:31:34Z" level=debug msg=fetch digest="sha256:8554bd94e4398d5e00dba4c59aa3a8c043c69c24a774361501f4404453ea57d6" mediatype=application/vnd.docker.distribution.manifest.v2+json size=429
time="2021-07-10T22:31:34Z" level=debug msg="do request" digest="sha256:8554bd94e4398d5e00dba4c59aa3a8c043c69c24a774361501f4404453ea57d6" mediatype=application/vnd.docker.distribution.manifest.v2+json request.header.accept="application/vnd.docker.distribution.manifest.v2+json, */*" request.header.user-agent=containerd/1.5.0-rc.1+unknown request.method=GET size=429 url="https://public.ecr.aws/v2/debian/mips64el/manifests/sha256:8554bd94e4398d5e00dba4c59aa3a8c043c69c24a774361501f4404453ea57d6"
time="2021-07-10T22:31:34Z" level=debug msg="fetch response received" digest="sha256:8554bd94e4398d5e00dba4c59aa3a8c043c69c24a774361501f4404453ea57d6" mediatype=application/vnd.docker.distribution.manifest.v2+json response.header.content-length=429 response.header.content-type=application/vnd.docker.distribution.manifest.v2+json response.header.date="Sat, 10 Jul 2021 22:31:34 GMT" response.header.docker-distribution-api-version=registry/2.0 response.status="200 OK" size=429 url="https://public.ecr.aws/v2/debian/mips64el/manifests/sha256:8554bd94e4398d5e00dba4c59aa3a8c043c69c24a774361501f4404453ea57d6"
time="2021-07-10T22:31:34Z" level=debug msg=fetch digest="sha256:0ef360681d84c8183ee0bf2a4fa787d6b71f58eea1be3fb200da9a014686e2bb" mediatype=application/vnd.docker.container.image.v1+json size=459
time="2021-07-10T22:31:34Z" level=debug msg="do request" digest="sha256:0ef360681d84c8183ee0bf2a4fa787d6b71f58eea1be3fb200da9a014686e2bb" mediatype=application/vnd.docker.container.image.v1+json request.header.accept="application/vnd.docker.container.image.v1+json, */*" request.header.user-agent=containerd/1.5.0-rc.1+unknown request.method=GET size=459 url="https://public.ecr.aws/v2/debian/mips64el/blobs/sha256:0ef360681d84c8183ee0bf2a4fa787d6b71f58eea1be3fb200da9a014686e2bb"
time="2021-07-10T22:31:34Z" level=debug msg="fetch response received" digest="sha256:0ef360681d84c8183ee0bf2a4fa787d6b71f58eea1be3fb200da9a014686e2bb" mediatype=application/vnd.docker.container.image.v1+json response.header.accept-ranges=bytes response.header.age=305 response.header.content-length=459 response.header.content-type=application/octet-stream response.header.date="Sat, 10 Jul 2021 22:26:30 GMT" response.header.etag="\"bd7626bb96781a30f630569112e9f3a1-1\"" response.header.last-modified="Sat, 10 Jul 2021 21:06:14 GMT" response.header.server=AmazonS3 response.header.via="1.1 c1c7bd66e338154bf556b9c8414debe9.cloudfront.net (CloudFront)" response.header.x-amz-cf-id="rBbOQuXrFxlyWg0LTUUqHoD1_rZ0P3l9HY53Xkan99k-KogLwgDL5g==" response.header.x-amz-cf-pop=HIO50-C2 response.header.x-amz-server-side-encryption=AES256 response.header.x-amz-version-id=CY3ORVygvkEBqz5lb9dtTeNAHiz1Dveu response.header.x-cache="Hit from cloudfront" response.status="200 OK" size=459 url="https://public.ecr.aws/v2/debian/mips64el/blobs/sha256:0ef360681d84c8183ee0bf2a4fa787d6b71f58eea1be3fb200da9a014686e2bb"
time="2021-07-10T22:31:34Z" level=debug msg=resolving host=public.ecr.aws
time="2021-07-10T22:31:34Z" level=debug msg="do request" host=public.ecr.aws request.header.accept="application/vnd.docker.distribution.manifest.v2+json, application/vnd.docker.distribution.manifest.list.v2+json, application/vnd.oci.image.manifest.v1+json, application/vnd.oci.image.index.v1+json, */*" request.header.user-agent=containerd/1.5.0-rc.1+unknown request.method=HEAD url="https://public.ecr.aws/v2/debian/ppc64el/manifests/bullseye"
time="2021-07-10T22:31:34Z" level=debug msg="fetch response received" host=public.ecr.aws response.header.content-length=429 response.header.content-type=application/vnd.docker.distribution.manifest.v2+json response.header.date="Sat, 10 Jul 2021 22:31:34 GMT" response.header.docker-content-digest="sha256:3aa0b30561cd4d236caa595854569fe0e9fbdca5e2a508aec259b85cf59df386" response.header.docker-distribution-api-version=registry/2.0 response.status="200 OK" url="https://public.ecr.aws/v2/debian/ppc64el/manifests/bullseye"
time="2021-07-10T22:31:34Z" level=debug msg=resolved desc.digest="sha256:3aa0b30561cd4d236caa595854569fe0e9fbdca5e2a508aec259b85cf59df386" host=public.ecr.aws
time="2021-07-10T22:31:34Z" level=debug msg=fetch digest="sha256:3aa0b30561cd4d236caa595854569fe0e9fbdca5e2a508aec259b85cf59df386" mediatype=application/vnd.docker.distribution.manifest.v2+json size=429
time="2021-07-10T22:31:34Z" level=debug msg="do request" digest="sha256:3aa0b30561cd4d236caa595854569fe0e9fbdca5e2a508aec259b85cf59df386" mediatype=application/vnd.docker.distribution.manifest.v2+json request.header.accept="application/vnd.docker.distribution.manifest.v2+json, */*" request.header.user-agent=containerd/1.5.0-rc.1+unknown request.method=GET size=429 url="https://public.ecr.aws/v2/debian/ppc64el/manifests/sha256:3aa0b30561cd4d236caa595854569fe0e9fbdca5e2a508aec259b85cf59df386"
time="2021-07-10T22:31:34Z" level=debug msg="fetch response received" digest="sha256:3aa0b30561cd4d236caa595854569fe0e9fbdca5e2a508aec259b85cf59df386" mediatype=application/vnd.docker.distribution.manifest.v2+json response.header.content-length=429 response.header.content-type=application/vnd.docker.distribution.manifest.v2+json response.header.date="Sat, 10 Jul 2021 22:31:34 GMT" response.header.docker-distribution-api-version=registry/2.0 response.status="200 OK" size=429 url="https://public.ecr.aws/v2/debian/ppc64el/manifests/sha256:3aa0b30561cd4d236caa595854569fe0e9fbdca5e2a508aec259b85cf59df386"
time="2021-07-10T22:31:34Z" level=debug msg=fetch digest="sha256:8bf31c81b503b8f5e0fa82baf0ff278ba0f6d075a1738b34ccb2f376b6a6cfd0" mediatype=application/vnd.docker.container.image.v1+json size=457
time="2021-07-10T22:31:34Z" level=debug msg="do request" digest="sha256:8bf31c81b503b8f5e0fa82baf0ff278ba0f6d075a1738b34ccb2f376b6a6cfd0" mediatype=application/vnd.docker.container.image.v1+json request.header.accept="application/vnd.docker.container.image.v1+json, */*" request.header.user-agent=containerd/1.5.0-rc.1+unknown request.method=GET size=457 url="https://public.ecr.aws/v2/debian/ppc64el/blobs/sha256:8bf31c81b503b8f5e0fa82baf0ff278ba0f6d075a1738b34ccb2f376b6a6cfd0"
time="2021-07-10T22:31:35Z" level=debug msg="fetch response received" digest="sha256:8bf31c81b503b8f5e0fa82baf0ff278ba0f6d075a1738b34ccb2f376b6a6cfd0" mediatype=application/vnd.docker.container.image.v1+json response.header.accept-ranges=bytes response.header.age=305 response.header.content-length=457 response.header.content-type=application/octet-stream response.header.date="Sat, 10 Jul 2021 22:26:31 GMT" response.header.etag="\"2bb05b4b42f8f2d4db4a538ec821f837-1\"" response.header.last-modified="Sat, 10 Jul 2021 21:10:54 GMT" response.header.server=AmazonS3 response.header.via="1.1 c1c7bd66e338154bf556b9c8414debe9.cloudfront.net (CloudFront)" response.header.x-amz-cf-id="IfgqNAOaETtscoyu8FpI2Yj4k4zpbXFp6lzogalV1_6892BzKI-Gzw==" response.header.x-amz-cf-pop=HIO50-C2 response.header.x-amz-server-side-encryption=AES256 response.header.x-amz-version-id=3rjiwdOfuDmAeyGK_J003gfZ8pZQdwwv response.header.x-cache="Hit from cloudfront" response.status="200 OK" size=457 url="https://public.ecr.aws/v2/debian/ppc64el/blobs/sha256:8bf31c81b503b8f5e0fa82baf0ff278ba0f6d075a1738b34ccb2f376b6a6cfd0"
time="2021-07-10T22:31:35Z" level=debug msg=resolving host=public.ecr.aws
time="2021-07-10T22:31:35Z" level=debug msg="do request" host=public.ecr.aws request.header.accept="application/vnd.docker.distribution.manifest.v2+json, application/vnd.docker.distribution.manifest.list.v2+json, application/vnd.oci.image.manifest.v1+json, application/vnd.oci.image.index.v1+json, */*" request.header.user-agent=containerd/1.5.0-rc.1+unknown request.method=HEAD url="https://public.ecr.aws/v2/debian/s390x/manifests/bullseye"
time="2021-07-10T22:31:35Z" level=debug msg="fetch response received" host=public.ecr.aws response.header.content-length=429 response.header.content-type=application/vnd.docker.distribution.manifest.v2+json response.header.date="Sat, 10 Jul 2021 22:31:35 GMT" response.header.docker-content-digest="sha256:6238afc51456c03370ea094b6228e94bbc5024a34a6403c84c7995b44af7cb78" response.header.docker-distribution-api-version=registry/2.0 response.status="200 OK" url="https://public.ecr.aws/v2/debian/s390x/manifests/bullseye"
time="2021-07-10T22:31:35Z" level=debug msg=resolved desc.digest="sha256:6238afc51456c03370ea094b6228e94bbc5024a34a6403c84c7995b44af7cb78" host=public.ecr.aws
time="2021-07-10T22:31:35Z" level=debug msg=fetch digest="sha256:6238afc51456c03370ea094b6228e94bbc5024a34a6403c84c7995b44af7cb78" mediatype=application/vnd.docker.distribution.manifest.v2+json size=429
time="2021-07-10T22:31:35Z" level=debug msg="do request" digest="sha256:6238afc51456c03370ea094b6228e94bbc5024a34a6403c84c7995b44af7cb78" mediatype=application/vnd.docker.distribution.manifest.v2+json request.header.accept="application/vnd.docker.distribution.manifest.v2+json, */*" request.header.user-agent=containerd/1.5.0-rc.1+unknown request.method=GET size=429 url="https://public.ecr.aws/v2/debian/s390x/manifests/sha256:6238afc51456c03370ea094b6228e94bbc5024a34a6403c84c7995b44af7cb78"
time="2021-07-10T22:31:35Z" level=debug msg="fetch response received" digest="sha256:6238afc51456c03370ea094b6228e94bbc5024a34a6403c84c7995b44af7cb78" mediatype=application/vnd.docker.distribution.manifest.v2+json response.header.content-length=429 response.header.content-type=application/vnd.docker.distribution.manifest.v2+json response.header.date="Sat, 10 Jul 2021 22:31:35 GMT" response.header.docker-distribution-api-version=registry/2.0 response.status="200 OK" size=429 url="https://public.ecr.aws/v2/debian/s390x/manifests/sha256:6238afc51456c03370ea094b6228e94bbc5024a34a6403c84c7995b44af7cb78"
time="2021-07-10T22:31:35Z" level=debug msg=fetch digest="sha256:e782bae23450c1a9e2932a2317c3742d6bf5f3136bb6e8e19778357024dcc8b0" mediatype=application/vnd.docker.container.image.v1+json size=453
time="2021-07-10T22:31:35Z" level=debug msg="do request" digest="sha256:e782bae23450c1a9e2932a2317c3742d6bf5f3136bb6e8e19778357024dcc8b0" mediatype=application/vnd.docker.container.image.v1+json request.header.accept="application/vnd.docker.container.image.v1+json, */*" request.header.user-agent=containerd/1.5.0-rc.1+unknown request.method=GET size=453 url="https://public.ecr.aws/v2/debian/s390x/blobs/sha256:e782bae23450c1a9e2932a2317c3742d6bf5f3136bb6e8e19778357024dcc8b0"
time="2021-07-10T22:31:35Z" level=debug msg="fetch response received" digest="sha256:e782bae23450c1a9e2932a2317c3742d6bf5f3136bb6e8e19778357024dcc8b0" mediatype=application/vnd.docker.container.image.v1+json response.header.accept-ranges=bytes response.header.age=304 response.header.content-length=453 response.header.content-type=application/octet-stream response.header.date="Sat, 10 Jul 2021 22:26:32 GMT" response.header.etag="\"326b09df25161f18b648cc1d8a18d47e-1\"" response.header.last-modified="Sat, 10 Jul 2021 21:16:49 GMT" response.header.server=AmazonS3 response.header.via="1.1 c1c7bd66e338154bf556b9c8414debe9.cloudfront.net (CloudFront)" response.header.x-amz-cf-id="Nv-1neJ8En2WtIkHvBdmFVxN0lULhf1MoM25ZIyN2YQmjb57D4-RVg==" response.header.x-amz-cf-pop=HIO50-C2 response.header.x-amz-server-side-encryption=AES256 response.header.x-amz-version-id=k6hLeQyno9LE6iNAQ0zuRYydWGxW8bRT response.header.x-cache="Hit from cloudfront" response.status="200 OK" size=453 url="https://public.ecr.aws/v2/debian/s390x/blobs/sha256:e782bae23450c1a9e2932a2317c3742d6bf5f3136bb6e8e19778357024dcc8b0"
time="2021-07-10T22:31:35Z" level=debug msg=push digest="sha256:359a78ec7f4b35efd70351fa5d3c5bcf1d5d3de554e719543737d236b5b7a8c8" mediatype=application/vnd.docker.image.rootfs.diff.tar.gzip size=53547954
time="2021-07-10T22:31:35Z" level=debug msg="checking and pushing to" digest="sha256:359a78ec7f4b35efd70351fa5d3c5bcf1d5d3de554e719543737d236b5b7a8c8" mediatype=application/vnd.docker.image.rootfs.diff.tar.gzip size=53547954 url="https://public.ecr.aws/v2/debian/debian/blobs/sha256:359a78ec7f4b35efd70351fa5d3c5bcf1d5d3de554e719543737d236b5b7a8c8"
time="2021-07-10T22:31:35Z" level=debug msg="do request" digest="sha256:359a78ec7f4b35efd70351fa5d3c5bcf1d5d3de554e719543737d236b5b7a8c8" mediatype=application/vnd.docker.image.rootfs.diff.tar.gzip request.header.accept="application/vnd.docker.image.rootfs.diff.tar.gzip, */*" request.header.user-agent=containerd/1.5.0-rc.1+unknown request.method=HEAD size=53547954 url="https://public.ecr.aws/v2/debian/debian/blobs/sha256:359a78ec7f4b35efd70351fa5d3c5bcf1d5d3de554e719543737d236b5b7a8c8"
time="2021-07-10T22:31:35Z" level=debug msg=push digest="sha256:f493583facd7ea0008e0a87c92f759047b3a82397113dd295a52057fcff3a7d5" mediatype=application/vnd.docker.container.image.v1+json size=453
time="2021-07-10T22:31:35Z" level=debug msg="checking and pushing to" digest="sha256:f493583facd7ea0008e0a87c92f759047b3a82397113dd295a52057fcff3a7d5" mediatype=application/vnd.docker.container.image.v1+json size=453 url="https://public.ecr.aws/v2/debian/debian/blobs/sha256:f493583facd7ea0008e0a87c92f759047b3a82397113dd295a52057fcff3a7d5"
time="2021-07-10T22:31:35Z" level=debug msg="do request" digest="sha256:f493583facd7ea0008e0a87c92f759047b3a82397113dd295a52057fcff3a7d5" mediatype=application/vnd.docker.container.image.v1+json request.header.accept="application/vnd.docker.container.image.v1+json, */*" request.header.user-agent=containerd/1.5.0-rc.1+unknown request.method=HEAD size=453 url="https://public.ecr.aws/v2/debian/debian/blobs/sha256:f493583facd7ea0008e0a87c92f759047b3a82397113dd295a52057fcff3a7d5"
time="2021-07-10T22:31:35Z" level=debug msg="fetch response received" digest="sha256:f493583facd7ea0008e0a87c92f759047b3a82397113dd295a52057fcff3a7d5" mediatype=application/vnd.docker.container.image.v1+json response.header.content-length=453 response.header.content-type=application/vnd.docker.container.image.v1+json response.header.date="Sat, 10 Jul 2021 22:31:35 GMT" response.header.docker-content-digest="sha256:f493583facd7ea0008e0a87c92f759047b3a82397113dd295a52057fcff3a7d5" response.header.docker-distribution-api-version=registry/2.0 response.status="200 OK" size=453 url="https://public.ecr.aws/v2/debian/debian/blobs/sha256:f493583facd7ea0008e0a87c92f759047b3a82397113dd295a52057fcff3a7d5"
time="2021-07-10T22:31:35Z" level=debug msg="fetch response received" digest="sha256:359a78ec7f4b35efd70351fa5d3c5bcf1d5d3de554e719543737d236b5b7a8c8" mediatype=application/vnd.docker.image.rootfs.diff.tar.gzip response.header.date="Sat, 10 Jul 2021 22:31:35 GMT" response.header.docker-distribution-api-version=registry/2.0 response.status="404 Not Found" size=53547954 url="https://public.ecr.aws/v2/debian/debian/blobs/sha256:359a78ec7f4b35efd70351fa5d3c5bcf1d5d3de554e719543737d236b5b7a8c8"
time="2021-07-10T22:31:35Z" level=debug msg="do request" digest="sha256:359a78ec7f4b35efd70351fa5d3c5bcf1d5d3de554e719543737d236b5b7a8c8" mediatype=application/vnd.docker.image.rootfs.diff.tar.gzip request.header.user-agent=containerd/1.5.0-rc.1+unknown request.method=POST size=53547954 url="https://public.ecr.aws/v2/debian/debian/blobs/uploads/?mount=sha256:359a78ec7f4b35efd70351fa5d3c5bcf1d5d3de554e719543737d236b5b7a8c8&from=debian/amd64"
time="2021-07-10T22:31:36Z" level=debug msg="fetch response received" digest="sha256:359a78ec7f4b35efd70351fa5d3c5bcf1d5d3de554e719543737d236b5b7a8c8" mediatype=application/vnd.docker.image.rootfs.diff.tar.gzip response.header.date="Sat, 10 Jul 2021 22:31:36 GMT" response.header.docker-distribution-api-version=registry/2.0 response.header.location="https://public.ecr.aws/v2/debian/debian/blobs/uploads/051a1b07-ec0e-45a1-a819-e7a5e7a62feb" response.header.range="bytes=0-10485760" response.status="202 Accepted" size=53547954 url="https://public.ecr.aws/v2/debian/debian/blobs/uploads/?mount=sha256:359a78ec7f4b35efd70351fa5d3c5bcf1d5d3de554e719543737d236b5b7a8c8&from=debian/amd64"
time="2021-07-10T22:31:36Z" level=fatal msg="Error pushing target manifest component reference: public.ecr.aws/debian/debian@sha256:33e8e98400de9f71db757d06cc58c0e07c108c6aa8212da59102e3559bf9a1f6: not_found"
1.0 debug logs:
time="2021-07-10T22:39:53Z" level=debug msg="hostDir: /etc/docker/certs.d/public.ecr.aws"
time="2021-07-10T22:39:53Z" level=debug msg="endpoints: [{false https://public.ecr.aws v2 false false true 0xc0003a4600}]"
time="2021-07-10T22:39:53Z" level=debug msg="repoName: debian/debian"
time="2021-07-10T22:39:53Z" level=info msg="Retrieving digests of images..."
time="2021-07-10T22:39:53Z" level=debug msg="hostDir: /etc/docker/certs.d/public.ecr.aws"
time="2021-07-10T22:39:53Z" level=debug msg="endpoints: [{false https://public.ecr.aws v2 false false true 0xc000098c00}]"
time="2021-07-10T22:39:53Z" level=debug msg="Trying to fetch image manifest of public.ecr.aws/debian/amd64 repository from https://public.ecr.aws v2"
time="2021-07-10T22:39:55Z" level=info msg="Image \"public.ecr.aws/debian/amd64:bullseye\" is digest sha256:33e8e98400de9f71db757d06cc58c0e07c108c6aa8212da59102e3559bf9a1f6; size: 429"
time="2021-07-10T22:39:55Z" level=debug msg="Adding manifest references of \"public.ecr.aws/debian/amd64:bullseye\" to blob mount requests"
time="2021-07-10T22:39:55Z" level=debug msg="Adding manifest \"debian/amd64\" -> to be pushed to \"debian/debian\" as a manifest reference"
time="2021-07-10T22:39:55Z" level=debug msg="hostDir: /etc/docker/certs.d/public.ecr.aws"
time="2021-07-10T22:39:55Z" level=debug msg="endpoints: [{false https://public.ecr.aws v2 false false true 0xc000099380}]"
time="2021-07-10T22:39:55Z" level=debug msg="Trying to fetch image manifest of public.ecr.aws/debian/armel repository from https://public.ecr.aws v2"
time="2021-07-10T22:39:57Z" level=info msg="Image \"public.ecr.aws/debian/armel:bullseye\" is digest sha256:e63bc6535e056306295f95742c47faf369d33c922af24a1a6bc7c21f636bf3ee; size: 429"
time="2021-07-10T22:39:57Z" level=debug msg="Adding manifest references of \"public.ecr.aws/debian/armel:bullseye\" to blob mount requests"
time="2021-07-10T22:39:57Z" level=debug msg="Adding manifest \"debian/armel\" -> to be pushed to \"debian/debian\" as a manifest reference"
time="2021-07-10T22:39:57Z" level=debug msg="hostDir: /etc/docker/certs.d/public.ecr.aws"
time="2021-07-10T22:39:57Z" level=debug msg="endpoints: [{false https://public.ecr.aws v2 false false true 0xc000098c00}]"
time="2021-07-10T22:39:57Z" level=debug msg="Trying to fetch image manifest of public.ecr.aws/debian/armhf repository from https://public.ecr.aws v2"
time="2021-07-10T22:39:59Z" level=info msg="Image \"public.ecr.aws/debian/armhf:bullseye\" is digest sha256:0e4cd553eecdbb95ff49284c9e64614cf51be0bdf2756c3128b71ba713299fad; size: 429"
time="2021-07-10T22:39:59Z" level=debug msg="Adding manifest references of \"public.ecr.aws/debian/armhf:bullseye\" to blob mount requests"
time="2021-07-10T22:39:59Z" level=debug msg="Adding manifest \"debian/armhf\" -> to be pushed to \"debian/debian\" as a manifest reference"
time="2021-07-10T22:39:59Z" level=debug msg="hostDir: /etc/docker/certs.d/public.ecr.aws"
time="2021-07-10T22:39:59Z" level=debug msg="endpoints: [{false https://public.ecr.aws v2 false false true 0xc00020cd80}]"
time="2021-07-10T22:39:59Z" level=debug msg="Trying to fetch image manifest of public.ecr.aws/debian/arm64 repository from https://public.ecr.aws v2"
time="2021-07-10T22:40:01Z" level=info msg="Image \"public.ecr.aws/debian/arm64:bullseye\" is digest sha256:b1299e622dae9fe202eb51c14fe8e0f1536f8734f468e6a6e2afe4896015c36e; size: 429"
time="2021-07-10T22:40:01Z" level=debug msg="Adding manifest references of \"public.ecr.aws/debian/arm64:bullseye\" to blob mount requests"
time="2021-07-10T22:40:01Z" level=debug msg="Adding manifest \"debian/arm64\" -> to be pushed to \"debian/debian\" as a manifest reference"
time="2021-07-10T22:40:01Z" level=debug msg="hostDir: /etc/docker/certs.d/public.ecr.aws"
time="2021-07-10T22:40:01Z" level=debug msg="endpoints: [{false https://public.ecr.aws v2 false false true 0xc000382180}]"
time="2021-07-10T22:40:01Z" level=debug msg="Trying to fetch image manifest of public.ecr.aws/debian/i386 repository from https://public.ecr.aws v2"
time="2021-07-10T22:40:03Z" level=info msg="Image \"public.ecr.aws/debian/i386:bullseye\" is digest sha256:d80ca89b23183ee1f155bee8084bf6a3f1096090ffd43ae9f97dc7aabc19d3d8; size: 429"
time="2021-07-10T22:40:03Z" level=debug msg="Adding manifest references of \"public.ecr.aws/debian/i386:bullseye\" to blob mount requests"
time="2021-07-10T22:40:03Z" level=debug msg="Adding manifest \"debian/i386\" -> to be pushed to \"debian/debian\" as a manifest reference"
time="2021-07-10T22:40:03Z" level=debug msg="hostDir: /etc/docker/certs.d/public.ecr.aws"
time="2021-07-10T22:40:03Z" level=debug msg="endpoints: [{false https://public.ecr.aws v2 false false true 0xc000382f00}]"
time="2021-07-10T22:40:03Z" level=debug msg="Trying to fetch image manifest of public.ecr.aws/debian/mips64el repository from https://public.ecr.aws v2"
time="2021-07-10T22:40:05Z" level=info msg="Image \"public.ecr.aws/debian/mips64el:bullseye\" is digest sha256:8554bd94e4398d5e00dba4c59aa3a8c043c69c24a774361501f4404453ea57d6; size: 429"
time="2021-07-10T22:40:05Z" level=debug msg="Adding manifest references of \"public.ecr.aws/debian/mips64el:bullseye\" to blob mount requests"
time="2021-07-10T22:40:05Z" level=debug msg="Adding manifest \"debian/mips64el\" -> to be pushed to \"debian/debian\" as a manifest reference"
time="2021-07-10T22:40:05Z" level=debug msg="hostDir: /etc/docker/certs.d/public.ecr.aws"
time="2021-07-10T22:40:05Z" level=debug msg="endpoints: [{false https://public.ecr.aws v2 false false true 0xc000099b00}]"
time="2021-07-10T22:40:05Z" level=debug msg="Trying to fetch image manifest of public.ecr.aws/debian/ppc64el repository from https://public.ecr.aws v2"
time="2021-07-10T22:40:07Z" level=info msg="Image \"public.ecr.aws/debian/ppc64el:bullseye\" is digest sha256:3aa0b30561cd4d236caa595854569fe0e9fbdca5e2a508aec259b85cf59df386; size: 429"
time="2021-07-10T22:40:07Z" level=debug msg="Adding manifest references of \"public.ecr.aws/debian/ppc64el:bullseye\" to blob mount requests"
time="2021-07-10T22:40:07Z" level=debug msg="Adding manifest \"debian/ppc64el\" -> to be pushed to \"debian/debian\" as a manifest reference"
time="2021-07-10T22:40:07Z" level=debug msg="hostDir: /etc/docker/certs.d/public.ecr.aws"
time="2021-07-10T22:40:07Z" level=debug msg="endpoints: [{false https://public.ecr.aws v2 false false true 0xc000098d80}]"
time="2021-07-10T22:40:07Z" level=debug msg="Trying to fetch image manifest of public.ecr.aws/debian/s390x repository from https://public.ecr.aws v2"
time="2021-07-10T22:40:09Z" level=info msg="Image \"public.ecr.aws/debian/s390x:bullseye\" is digest sha256:6238afc51456c03370ea094b6228e94bbc5024a34a6403c84c7995b44af7cb78; size: 429"
time="2021-07-10T22:40:09Z" level=debug msg="Adding manifest references of \"public.ecr.aws/debian/s390x:bullseye\" to blob mount requests"
time="2021-07-10T22:40:09Z" level=debug msg="Adding manifest \"debian/s390x\" -> to be pushed to \"debian/debian\" as a manifest reference"
time="2021-07-10T22:40:09Z" level=debug msg="Manifest list push url: https://public.ecr.aws/v2/debian/debian/manifests/bullseye"
time="2021-07-10T22:40:09Z" level=debug msg="mediaType of manifestList: application/vnd.docker.distribution.manifest.list.v2+json"
time="2021-07-10T22:40:10Z" level=debug msg="Mount of blob sha256:f493583facd7ea0008e0a87c92f759047b3a82397113dd295a52057fcff3a7d5 succeeded, location: \"https://public.ecr.aws/v2/debian/debian/blobs/uploads/0eeb73b8-b13a-4a4b-9e94-7cfc34aabdcf\""
time="2021-07-10T22:40:11Z" level=debug msg="Mount of blob sha256:359a78ec7f4b35efd70351fa5d3c5bcf1d5d3de554e719543737d236b5b7a8c8 succeeded, location: \"https://public.ecr.aws/v2/debian/debian/blobs/uploads/cce5a3b5-5f5a-4b10-8cfe-f455665adb20\""
time="2021-07-10T22:40:11Z" level=debug msg="Mount of blob sha256:c56e1f0fb439e41795f83b3be708b85b47dd04e3800838d57b61728c999f7f39 succeeded, location: \"https://public.ecr.aws/v2/debian/debian/blobs/uploads/aa2c289d-0b6e-4bc8-83da-a4cc3ee6d67e\""
time="2021-07-10T22:40:12Z" level=debug msg="Mount of blob sha256:b865a52d93ad7521c2ece3878f1db27a359aeec5146beb7fa5419e141fc0f5a9 succeeded, location: \"https://public.ecr.aws/v2/debian/debian/blobs/uploads/4ebdfd9e-26b5-478e-8091-6474762aef6e\""
time="2021-07-10T22:40:13Z" level=debug msg="Mount of blob sha256:354af0a15484fce679fbf48b7b144fc9b1dd102f94ecca3e8dbf9abc3badd3d1 succeeded, location: \"https://public.ecr.aws/v2/debian/debian/blobs/uploads/ee4748ae-3d2a-4c6e-9670-982e85598f4e\""
time="2021-07-10T22:40:14Z" level=debug msg="Mount of blob sha256:0a8857293d8fd5045282b48be6486c08245f38003b2933842c24bc8ef9cc23cc succeeded, location: \"https://public.ecr.aws/v2/debian/debian/blobs/uploads/8d7b1b02-24b4-4ae5-8e03-d73ea8b9122f\""
time="2021-07-10T22:40:14Z" level=debug msg="Mount of blob sha256:3b897f497731bbf2168a2e8400434f58e2f75ded37bfa23c9948879249c7e6f2 succeeded, location: \"https://public.ecr.aws/v2/debian/debian/blobs/uploads/98057141-a5cb-4952-bac7-c7bc22be8cea\""
time="2021-07-10T22:40:15Z" level=debug msg="Mount of blob sha256:5da4b0c1bed67ff05224d1011950708d58470cba6df82cc3e07a686cb1b77aef succeeded, location: \"https://public.ecr.aws/v2/debian/debian/blobs/uploads/5dccbf50-efbc-4151-941a-12e0bd1b1eee\""
time="2021-07-10T22:40:16Z" level=debug msg="Mount of blob sha256:87bd2381f192dfba0c24e34dc52aa88c8bf983c2b37b09906b2005c3c820d0b7 succeeded, location: \"https://public.ecr.aws/v2/debian/debian/blobs/uploads/fdf8c300-b4ea-4744-aaad-5c7d5e1ee058\""
time="2021-07-10T22:40:17Z" level=debug msg="Mount of blob sha256:383eed2c9e589ef048cc52e7a312a0d728210881d6922db32d35fa46fa2535a8 succeeded, location: \"https://public.ecr.aws/v2/debian/debian/blobs/uploads/161dda77-02e2-46dc-9de1-2e65036cbaf1\""
time="2021-07-10T22:40:17Z" level=debug msg="Mount of blob sha256:0ef360681d84c8183ee0bf2a4fa787d6b71f58eea1be3fb200da9a014686e2bb succeeded, location: \"https://public.ecr.aws/v2/debian/debian/blobs/uploads/9de273b7-3d3f-42b1-a393-7f1ad98bfd6a\""
time="2021-07-10T22:40:18Z" level=debug msg="Mount of blob sha256:bf5f5db9121a9438f7970ed0c40f8fe01766c9db06ba19efae7f87279f1bbb46 succeeded, location: \"https://public.ecr.aws/v2/debian/debian/blobs/uploads/981d3b49-3a0a-4c04-808d-9d4ceb90bfc5\""
time="2021-07-10T22:40:19Z" level=debug msg="Mount of blob sha256:8bf31c81b503b8f5e0fa82baf0ff278ba0f6d075a1738b34ccb2f376b6a6cfd0 succeeded, location: \"https://public.ecr.aws/v2/debian/debian/blobs/uploads/68e658d2-e2f0-49e9-8d62-b419f2b45e4a\""
time="2021-07-10T22:40:20Z" level=debug msg="Mount of blob sha256:a3c8f207de33a85c36d5935894312f1fbf2ce1e114e62f71915729b3b9c94e20 succeeded, location: \"https://public.ecr.aws/v2/debian/debian/blobs/uploads/cce0abac-14e6-415d-a6ea-b695cfab4818\""
time="2021-07-10T22:40:21Z" level=debug msg="Mount of blob sha256:e782bae23450c1a9e2932a2317c3742d6bf5f3136bb6e8e19778357024dcc8b0 succeeded, location: \"https://public.ecr.aws/v2/debian/debian/blobs/uploads/0cce58e9-aec9-4411-8ea7-27a480a6c911\""
time="2021-07-10T22:40:21Z" level=debug msg="Mount of blob sha256:a8f43b4f7f6b0f32e456665d00527fd7e0c39dcc3b3bc5b02c3e28110fc7fe42 succeeded, location: \"https://public.ecr.aws/v2/debian/debian/blobs/uploads/8739586a-a4b6-4c53-ae25-47cedb49cb9e\""
time="2021-07-10T22:40:21Z" level=debug msg="manifest reference push URL: https://public.ecr.aws/v2/debian/debian/manifests/bullseye"
time="2021-07-10T22:40:22Z" level=fatal msg="Couldn't push manifests referenced in our manifest list: Referenced manifest push unsuccessful: response 404: 404 Not Found"

(I know I said in #123 that I don't have any real YAML that omit platform: but I swear I hadn't written this one yet when I wrote that! Fixing that is what reminded me this was possible. 😇)

Any help or pointers would be hugely appreciated. 🙏 ❤️

@tianon
Copy link
Contributor Author

tianon commented Jul 29, 2021

I have an interesting bit of added information -- I'm also not able to successfully create these via docker manifest:

$ docker manifest create public.ecr.aws/debian/debian:bullseye public.ecr.aws/debian/amd64:bullseye public.ecr.aws/debian/armel:bullseye public.ecr.aws/debian/armhf:bullseye public.ecr.aws/debian/arm64:bullseye public.ecr.aws/debian/i386:bullseye public.ecr.aws/debian/mips64el:bullseye public.ecr.aws/debian/ppc64el:bullseye public.ecr.aws/debian/s390x:bullseye
Created manifest list public.ecr.aws/debian/debian:bullseye
$ docker manifest push --purge public.ecr.aws/debian/debian:bullseye
error mounting debian/amd64@sha256:4c0bfd2a9f4e90b5a07958f07d71b2e2ea5a965649c92bf35822aece72a29c6b to public.ecr.aws/debian/debian:bullseye

(Suspiciously similar error!)

@tianon
Copy link
Contributor Author

tianon commented Jul 30, 2021

For your sake, Phil, I want to report over here that the workaround I tested in aws/containers-roadmap#1459 (comment) worked on both manifest-tool 1.0 and the 2.0+ build I have that includes #123 😇

(Gotta use 2.0 ultimately because there isn't a 1.0 that accepts riscv64 😄)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant