Can't analyze project code quality with Code Climate CLI
Summary
Pipeline fails on code_quality job, because of inability to get image registry.gitlab.com/gitlab-org/security-products/codequality:11-1-stable.
Steps to reproduce
Add code_quality job to .gitlab-ci.yml as mentioned here.
Example Project
As I see, the same situation here: https://gitlab.com/gitlab-org/gitlab-ee/-/jobs/79325877 since yesterday.
What is the current bug behavior?
Job fails on trying to pull image.
What is the expected correct behavior?
Pulling image and running code analysis.
Relevant logs and/or screenshots
$ export SP_VERSION=$(echo "$CI_SERVER_VERSION" | sed 's/^\([0-9]*\)\.\([0-9]*\).*/\1-\2-stable/')
$ docker run --env SOURCE_CODE="$PWD" --volume "$PWD":/code --volume /var/run/docker.sock:/var/run/docker.sock "registry.gitlab.com/gitlab-org/security-products/codequality:$SP_VERSION" /code
Unable to find image 'registry.gitlab.com/gitlab-org/security-products/codequality:11-1-stable' locally
docker: Error response from daemon: manifest for registry.gitlab.com/gitlab-org/security-products/codequality:11-1-stable not found.
See 'docker run --help'.
ERROR: Job failed: exit code 125
Output of checks
This bug happens on GitLab.com
Edited by Maksim Kalmykov