Skip to content

No manifest found for all -arm* images #639

Open
@alessio-perugini

Description

@alessio-perugini

Starting from go 1.24.2 I'm unable to pull any of the -arm-debian12 tags. I've written a small script, and it seems that all of the arm tags after 1.24.1 are not working.

#!/usr/bin/bash
versions=("1.24.4" "1.24.3" "1.24.2" "1.24.1")
tags=("-arm" "-arm-debian9" "-arm-debian10" "-arm-debian11" "-arm-debian12" "-armel" "-armel-debian12" "-armhf" "-armhf-debian9" "-armhf-debian10" "-armhf-debian11" "-armhf-debian12" "-base" "-darwin" "-main" "-main-debian7" "-main-debian9" "-main-debian10" "-main-debian11" "-main-debian12" "-mips-debian12" "-ppc-debian12" "-s390x-debian12")

for version in ${versions[@]}; do
    for tag in ${tags[@]}; do
      docker manifest inspect "docker.elastic.co/beats-dev/golang-crossbuild:${version}${tag}" > /dev/null
    done
done

Output:

no such manifest: docker.elastic.co/beats-dev/golang-crossbuild:1.24.4-arm
no such manifest: docker.elastic.co/beats-dev/golang-crossbuild:1.24.4-arm-debian9
no such manifest: docker.elastic.co/beats-dev/golang-crossbuild:1.24.4-arm-debian10
no such manifest: docker.elastic.co/beats-dev/golang-crossbuild:1.24.4-arm-debian11
no such manifest: docker.elastic.co/beats-dev/golang-crossbuild:1.24.4-arm-debian12
no such manifest: docker.elastic.co/beats-dev/golang-crossbuild:1.24.4-armel
no such manifest: docker.elastic.co/beats-dev/golang-crossbuild:1.24.3-arm
no such manifest: docker.elastic.co/beats-dev/golang-crossbuild:1.24.3-arm-debian9
no such manifest: docker.elastic.co/beats-dev/golang-crossbuild:1.24.3-arm-debian10
no such manifest: docker.elastic.co/beats-dev/golang-crossbuild:1.24.3-arm-debian11
no such manifest: docker.elastic.co/beats-dev/golang-crossbuild:1.24.3-arm-debian12
no such manifest: docker.elastic.co/beats-dev/golang-crossbuild:1.24.3-armel
no such manifest: docker.elastic.co/beats-dev/golang-crossbuild:1.24.2-arm
no such manifest: docker.elastic.co/beats-dev/golang-crossbuild:1.24.2-arm-debian9
no such manifest: docker.elastic.co/beats-dev/golang-crossbuild:1.24.2-arm-debian10
no such manifest: docker.elastic.co/beats-dev/golang-crossbuild:1.24.2-arm-debian11
no such manifest: docker.elastic.co/beats-dev/golang-crossbuild:1.24.2-arm-debian12
no such manifest: docker.elastic.co/beats-dev/golang-crossbuild:1.24.2-armel
no such manifest: docker.elastic.co/beats-dev/golang-crossbuild:1.24.2-main-debian7
no such manifest: docker.elastic.co/beats-dev/golang-crossbuild:1.24.1-arm
no such manifest: docker.elastic.co/beats-dev/golang-crossbuild:1.24.1-arm-debian9
no such manifest: docker.elastic.co/beats-dev/golang-crossbuild:1.24.1-armel
no such manifest: docker.elastic.co/beats-dev/golang-crossbuild:1.24.1-main-debian7
no such manifest: docker.elastic.co/beats-dev/golang-crossbuild:1.24.1-ppc-debian12

I've noticed this while working on a bump in the arduino-cli and the CI is failing. I thought it could be some temporary error, but I'm consistently hitting this error.

Am I doing something wrong? Thank you in advance!

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions