3,208 questions
0
votes
0
answers
12
views
How to name Gitlab runner volumes
I have a gitlab runner setup using EC2 and I have few worker nodes for the gitlab runner that are invoked when needed otherwise will be in stopped state. I want to configure the setup in a way that ...
-1
votes
0
answers
24
views
How to deploy a web application via GitLab Runner to Windows IIS?
I'm trying to deploy a .NET 4.8 web application to IIS via GitLab Runner, and unlike the build done in Visual Studio, I'm having trouble generating the build without unused files like .cs files.
My ...
1
vote
0
answers
63
views
Loading a postgres database dump for testing in GitLab CI
For testing I am bringing up PostgreSQL and trying to use the default database postgres to dump my database to test the application, the problem is that I can't do it. I get errors at the moment of ...
0
votes
0
answers
21
views
Trying to update Record in AWS Route53 using gitlab-ci.yml
I am trying to update a record in our Route53 and it seems the code in gitlab-ci.yml syntax is correct but it it getting an error on execution,
See this is the code:
create_dns_record:
stage: ...
0
votes
0
answers
41
views
Caching in Self-hosted GitLab Runner Not Working with GCS (Tried Local Cache as Well)
I am running a self-hosted GitLab instance with GitLab Runner and trying to set up caching for my CI jobs using Google Cloud Storage (GCS). However, caching is not working as expected. I’ve also tried ...
2
votes
1
answer
28
views
PromQL for CPU pressure of a certain container "class"
We deploy our gitlab runners in kubernetes, where we offer different classes that distinguish in cpu/memory requests.
My goal is now to find a promQL query, that indicates a high CPU pressure over a ...
0
votes
1
answer
80
views
gitlab ci runner with docker executor fails docker dind service's health check
I'm trying to run gitlab ci with a self-hosted runner with dokcer executor. I set docker dind as one of the services and it fails the health check with a message "nc: bad address 'docker'".
...
0
votes
0
answers
27
views
Cant acces gitlab by REST from specific server
Today I run into unpredictable behaviour of CI/CD when tried to update server - pipline could not start. I found that the problem is getting data from method https://git.example.com/api/v4/runners.
...
0
votes
0
answers
30
views
wp-env fails in GitLab CI with “YIKES! It looks like you’re running this as root”
I’m trying to run wp-env in a GitLab CI pipeline using Docker, but I’m running into an issue where WP-CLI blocks execution because it’s running as root.
Here is my current .gitlab-ci.yml config:
...
0
votes
0
answers
21
views
Mount windows share in gitlab-runner via docker desktop on windows - permission denied
I have a gitlab-ci.yml which builds a project and should deploy it to a windows share, but the second stage where I mount a windows share does not work inside my runner.
I have a windows machine with ...
0
votes
0
answers
29
views
Execute Python code with GitLab parallel matrix in different OS (Windows and Linux)
I'd like to test my project's code with e2e tests, hopefully in different OS to ensure it works as expected not only in Linux systems but in other ones as well.
To achieve this, I'd like to use GitLab'...
0
votes
1
answer
25
views
Is it possible to support multiple Devart versions on a single GitLab Runner at the same time?
I'm looking to set up GitLab runners with the two different versions of Devart dotConnect at the same time. Most of our company projects have been updated to version 8.1.151.0, but some older projects ...
0
votes
0
answers
40
views
Gitlab-CI / Docker runner - How to get clean docker container for each pipeline?
I'm working on a basic continuous integration (I worked with Gitlab since few years now).
I use a docker runner with a custom image (basic Ubuntu with quiet nothing inside...).
Here is the gitlab-ci....
0
votes
0
answers
23
views
How do you register gitlab runner when the gitlab instance uses a wildcard certificate SAN?
When I try to register my gitlab runner, I get this error message (replaced my domain name with "domain" below):
ERROR: Verifying runner... failed runner=Ze25TVGSq status=...
0
votes
0
answers
27
views
Problem with CPU affinity in gitlab runner using taskset
Good morning everyone,
I am trying to set up an environment on some specific CPUs on my Jetson nano.
The first thing I am doing is setting up a runner by assigning the affinity with taskset as follows ...