CrazyMax
CrazyMax
@pimvandenbroek Doesn't just setting `provenance: false` with the build-push action (or `--provenance false` with buildx cmd) solves the issue instead of rolling back to 0.9.1?
@pimvandenbroek This is a build option so in [build-push-action](https://github.com/docker/build-push-action/): ```yaml - name: Build and push uses: docker/build-push-action@v3 with: push: true provenance: false tags: user/app:latest ``` Or if you invoke buildx...
> @crazy-max tested it, however apparently, the environment where the buildx command is generated is using an older version of buildkit and we received the following error: `buildx failed with:...
@violen Can you post the logs of the build command please? If you can also enable [debug logs and post BuildKit logs](https://docs.docker.com/build/ci/github-actions/configure-builder/#buildkit-container-logs) that would be handy: ``` - name: Set...
@pimvandenbroek I don't think this error is related to the image being pushed but the cache. Does it work if you remove `"--cache-to" "type=registry,ref=eu.gcr.io/REPO/IMAGE:latest,mode=max"`?
Looks related to issues with Quay https://github.com/moby/buildkit/issues/1440 and Harbor https://github.com/moby/buildkit/issues/2479#issuecomment-1413715394 If you could post the BuildKit logs too that would be handy but best guess is Yandex does not properly...
@pimvandenbroek Can you create another BuildKit container with [`--buildkitd-flags '--debug'` flag](--buildkitd-flags) and post the logs of the container please? Like in https://github.com/moby/buildkit/issues/2479#issuecomment-1413715394
``` Failed to deserialize application/vnd.docker.distribution.manifest.list.v2+json ``` Looks to be an issue with Yandex registry :worried:
Ah I'm confused, thought it was same issue as OP :persevere: Maybe related to https://github.com/moby/buildkit/issues/1143#issuecomment-1027966758 in your case. Also switching to GAR is recommended: https://cloud.google.com/artifact-registry/docs/transition/transition-from-gcr
Seems tarball is not created :thinking:: https://github.com/moby/buildkit/actions/runs/15738588557/job/44462990343?pr=6037#step:3:16 Maybe artifacts got pruned when re-running the workflow. Let me do a full re-run to make sure.