
devops - What is gitlab runner - Stack Overflow
Nov 14, 2017 · A GitLab runner clones the project read the gitlab-ci.yaml file and do what he is instructed to do. So basically GitLab runner is a Golang process that executes some instructed …
When does a runner get displayed as offline? - forum.gitlab.com
Nov 22, 2024 · I would have expected the Gitlab instance to recognize the loss of the connection to the runner process and mark it as offline accordingly within a reasonable time frame (say …
Permission denied using gitlab runner - Stack Overflow
Aug 8, 2024 · 2 gitlab-runner user and usergroup cannot access to ec2-user related directories if your gitlab-runner executed by gitlab-runner user. Try add gitlab-runner user to ec2-user …
Getting Gitlab runner details for all runners - Stack Overflow
Aug 13, 2021 · GitLab 16.4 (September 2023) adds: Users with the Maintainer role can view runner details Users with the Maintainer role for a group can now view details for group …
GitLab CI/CD Runner Registration - tls: failed to verify certificate ...
Mar 26, 2024 · GitLab CI/CD Runner Registration Certification / Verification Issue Hi all, I am looking to get started with CI/CD with GitLab for the first time. I am using a newly built server …
Gitlab: where is config.toml? - Stack Overflow
Aug 18, 2021 · The locations where it could be is documented here. You can find the config.toml file in: /etc/gitlab-runner/ on *nix systems when GitLab Runner is executed as root (this is also …
gitlab ci job stuck, gitlab runner not picking up the jobs
Dec 25, 2023 · I got the right ci.yml, gitlab runner configured right.But still told me "This job is stuck because of one of the following problems. There are no active runners online, no …
gitlab runner Specific runner vs Shared runner vs Group runner
Jan 1, 2020 · GitLab Runner is the lightweight, highly-scalable agent that runs your build jobs and sends the results back to a GitLab instance. GitLab Runner works in conjunction with GitLab …
How gitlab runner concurrency works? - Stack Overflow
A runner's request_concurrency is how many requests can a runner handle from the Gitlab CI job queue. Finally, setting a value to concurrent will limit how many jobs can be executed at your …
CI/CD gitlab-runner accessing another user directory and files
Jan 9, 2024 · Use sudo cp command to copy the required files/scripts to the gitlab-user for example: sudo cp -r home/lukas/Scripts home/gitlab-user This way, gitlab user can access …