Skip to content

image gitlab-runner-helper:11.2.0

Summary

Fresh setup gitlab 11.2.0 CE and gitlab-runner 11.2.0 configured to use docker as executor.

Steps to reproduce

Try and use a pipeline with the configuration defined above.

.gitlab-ci.yml
stages:
  - build
  - deploy

build:
  tags: 
    - build
  image: node
  stage: build
  script:
    - echo building
    - whoami
    - pwd
    - ls
  artifacts:
    paths:
      - dist

deploy:
  tags: 
    - deploy
  image: alpine:latest
  stage: deploy
  script:
    - echo production
    - whoami
    - pwd
    - ls

Actual behavior

Running with gitlab-runner 11.2.0 (11.2.0) on XPS-15 rADdybuz Using Docker executor with image node ... Pulling docker image gitlab-runner-helper:11.2.0 ... ERROR: Failed to create container volume for /builds/root Error response from daemon: pull access denied for gitlab-runner-helper, repository does not exist or may require 'docker login': denied: requested access to the resource is denied (executor_docker.go:166:1s) ERROR: Job failed: Error response from daemon: pull access denied for gitlab-runner-helper, repository does not exist or may require 'docker login': denied: requested access to the resource is denied (executor_docker.go:166:1s)

Expected behavior

That it executes my scripts.

Relevant logs and/or screenshots

n/a

Environment description

  • It's a custom installation.

$ docker --version Docker version 19.03.3, build a872fc2f86

config.toml contents
concurrent = 1
check_interval = 0

[[runners]]
  name = "XPS-15"
  url = "https://gitlab.singlecore.be"
  token = "rADdybuzsLvNWgxD6iB_"
  executor = "docker"
  [runners.docker]
    tls_verify = false
    image = "alphine:latest"
    privileged = false
    disable_cache = false
    volumes = ["/cache"]
    shm_size = 0
  [runners.cache]

Used GitLab Runner version

$ gitlab-runner --version

ERRO[0000] Docker executor: prebuilt image helpers will be loaded from /var/lib/gitlab-runner. 
Version:      11.2.0
Git revision: 11.2.0
Git branch:   HEAD
GO version:   go1.10.4
Built:        unknown
OS/Arch:      linux/amd64

Possible fixes

Looking at: https://hub.docker.com/r/gitlab/gitlab-runner-helper It doesn't tag anything like: '11.2.0' it seems like it's using incorrect tags?