Gitlab CI - ERROR: Preparation failed: adding cache volume: set volume permissions: running permission container
Asked Answered
B

0

7

I have a Gitlab-Runner (version: 15.5.1) in a VM (Ubuntu 20.04.5 lts). The docker version is 22.06.0-beta.0. I'm trying to run a pipeline which use node:latest image but The following error messages occur when I run the pipeline. enter image description here The configuration (config.toml) is :

    [[runners]]
      name = "runner-web"
      url = "my url here"
      id = 8
      token = "Q_9sEzj9y2sPPJTLnGpL"
      token_obtained_at = 2022-12-01T14:09:45Z
      token_expires_at = 0001-01-01T00:00:00Z
      executor = "docker"
      [runners.custom_build_dir]
      [runners.cache]
        [runners.cache.s3]
        [runners.cache.gcs]
        [runners.cache.azure]
      [runners.docker]
        tls_verify = false
        image = "docker:latest"
        privileged = true
        disable_entrypoint_overwrite = false
        oom_kill_disable = false
        disable_cache = false
        volumes = ["/var/run/docker.sock:/var/run/docker.sock","/cache"]
        shm_size = 0

Could it be disk space issues ? This is the disk space in the VM. enter image description here

Barograph answered 14/12, 2022 at 9:34 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.