Questions tagged [gitlab-ci-runner]
GitLab Runner is the open source project that is used to run your jobs and send the results back to GitLab. It is used in conjunction with GitLab CI, the open-source continuous integration service included with GitLab that coordinates the jobs.
91 questions
3 votes
1 answer
434 views
What are the alternatives to Kaniko for building and pushing Docker images?
I run multiple GitLab CI jobs that use Kaniko to build Docker images and push them to my private GitLab registry. My GitLab Runners use the Docker executor with privileged = false, and this setup has ...
0 votes
0 answers
45 views
Gitlab tag-generated pipeline fails to create gitlab release due to release already existing
I am attempting to create a gitlab release for my software as part of a gitlab ci pipeline. This 'release' pipeline is triggered by creating a tag of a specific format, which tells gitlab to build, ...
0 votes
0 answers
34 views
CI job couldn't checkout the submodule
I have a project a. I have other projects added as submodules recursively called b and c. a is in the top, c is in the bottom. In the project b folder, I removed the submodule c and added it as files ...
0 votes
1 answer
102 views
How to wait for gitlab downstream pipelines to test finish before deploy?
I want to trigger the test to finish before deploying in GitLab CI. I can't add needs: ["trigger-test-job"] into the deploy-job because it gives this error: deploy-job job: need trigger-test-...
0 votes
0 answers
38 views
How to upgrade a specific runner in Gitlab?
I've minimal knowledge of Docker-Gitlab. I am trying to do the following: I've existing runners in the Gitlab. Need to upgrade one of the runners to the latest version. I've authenticated from the ...
1 vote
2 answers
4k views
GitLab CI: How to properly push file to a repo using ci file?
I'm trying to setup a GitLab CI pipeline which runs a script (convert-inventory-format.sh) that update a yaml file. I would then like to commit that file to a Git repository and push it. However, the ...
1 vote
1 answer
2k views
How to wait for gitlab downstream pipelines to finish before going to next stage?
I'm not sure this is the way to proceed, but I'm starting using downstream pipelines. I have 3 projects : Project A : web-frontend-1 Project B : web-frontend-2 Project C : global-e2e-testing I'm ...
1 vote
1 answer
2k views
Gitlab runner tons of errors when trying to use shell executor
I installed the runners using the docker executor, but then later realized I actually needed the shell executor for layer caching... However now I just keep running into so many errors trying to get ...
1 vote
1 answer
2k views
Gitlab Runner setup issues on Mac Mini with M2 processor
I have a pair of Mac Minis with M2 processors that I am trying to setup as runners on a locally hosted gitlab setup. For a variety of other systems I simply followed the instructions on the runners ...
0 votes
1 answer
156 views
Are webhooks needed in Gitlab for triggering a build on tags push
I would like to trigger a Build on Gitlab when a Git Tag is pushed to the repository. At the same time I would like to increment the version number on a file located on the repository before building ...
2 votes
1 answer
13k views
GitLab CI runner: remote: You are not allowed to download code from this project
Inside of one of my runner's logs, when I try to replay it, I'm getting the following error, Reinitialized existing Git repository in /builds/users/repo/.git/ remote: You are not allowed to download ...
0 votes
1 answer
2k views
When running terraform from Gitlab CI, terraform asks me for the "The address of the REST endpoint"
When I run terraform apply using the Terraform files in my GitLab CI Pipeline (I didn't write them) I get the following, Initializing the backend... address The address of the REST endpoint Can ...
0 votes
2 answers
1k views
Building a docker container in a gitlab ci job
I am trying to build a docker image as part of a gitlab ci job. I work on my own gitlab instance with a separate machine running ci jobs. I have tried and failed with many different configurations for ...
0 votes
3 answers
8k views
gitlab-runner docker: command not found
I'm trying to build docker container using GitLab runner. (lead dev left company, and now I have no idea how to do it.) I'll share everything I can. Build output as I understand from output runner is ...
0 votes
1 answer
1k views
GitLab tag removal through the web interface does not actually remove the tag from Git
When I hit the delete button in the Tags interface I can verify the tag does not show, but when semantic-release tries to run, I still git tag on the runner I still get fatal: tag 'v5.2.3' already ...