Running Garden 0.13.55 on Github CI and receiving ...
# 🌱|help-and-getting-started
h
Copy code
━━━ Latest events from Deployment backend-api ━━━
Deployment backend-api: ScalingReplicaSet - Scaled up replica set backend-api-d5f7f57fb to 1
Pod backend-api-d5f7f57fb-clqlf: Scheduled - Successfully assigned custom-runner/backend-api-d5f7f57fb-clqlf to runner
Pod backend-api-d5f7f57fb-clqlf: Pulling - Pulling image "backend-api:v-bdfcbe7b43"
Pod backend-api-d5f7f57fb-clqlf: Failed - Failed to pull image "backend-api:v-bdfcbe7b43": Error response from daemon: pull access denied for backend-api, repository does not exist or may require 'docker login': denied: requested access to the resource is denied
Pod backend-api-d5f7f57fb-clqlf: Failed - Error: ErrImagePull
Pod backend-api-d5f7f57fb-clqlf: BackOff - Back-off pulling image "backend-api:v-bdfcbe7b43"
Pod backend-api-d5f7f57fb-clqlf: Failed - Error: ImagePullBackOff
It seems it's trying to pull a built image from docker-hub and not locally.
Here's our run code:
Copy code
- name: Run Workflow dev-deploy (stack ready for e2e tests)
      uses: garden-io/garden-action@v1.2
      with:
        command: deploy mybackend-api --env ci ${{ env.AG_VARS }} --var gcp_credentials_path=${{ steps.gcp-auth.outputs.credentials_file_path}}
        kubeconfig-location: ${{ env.KUBECONFIG }}
        garden-workdir: garden/garden/my_garden
        garden-version: 0.13.55
nvm, figured it out, we had to remove buildx
c
Hi @helpful-businessperson-13763, happy you solved this!