From 8ca72fb9a3abf6aaed70224116f490db1d104465 Mon Sep 17 00:00:00 2001 From: whaifang <45645875+whaifang@users.noreply.github.com> Date: Fri, 21 Jun 2024 16:18:16 +0800 Subject: [PATCH] Update release.yaml to add linux/ppc64le We need to fix this issue, so we need ppc64le v5.9.2 Failed to pull image "ghcr.io/grafana/grafana-operator@sha256:e7923d1a71b90a8ad66d114aec4b2b4e4929f15ba91872f64c5e271629612284": rpc error: code = Unknown desc = choosing image instance: no image found in image index for architecture ppc64le, variant "", OS linux --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index ef7c1b12a..4d6686cff 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -119,7 +119,7 @@ jobs: for i in ${{ env.REPOS }} do export KO_DOCKER_REPO=${i} - ko build --sbom=spdx --image-refs ./image-digest-${i%.*} --bare --platform linux/arm64,linux/arm/v7,linux/amd64 -t ${{ github.ref_name }} \ + ko build --sbom=spdx --image-refs ./image-digest-${i%.*} --bare --platform linux/arm64,linux/arm/v7,linux/amd64,linux/ppc64le -t ${{ github.ref_name }} \ --image-label org.opencontainers.image.title=grafana-operator \ --image-label org.opencontainers.image.description="An operator for Grafana that installs and manages Grafana instances & Dashboards & Datasources through Kubernetes/OpenShift CRs" \ --image-label org.opencontainers.image.url=${{ github.server_url }}/${{ github.repository }} \