Questions tagged [gitlab]
For questions about GitLab, an open source Git repository manager with issue tracking, wiki and continuous integration facilities.
242 questions
0 votes
1 answer
19 views
Is it possible to configure a gitlab Job that has access to to gl-sast-report.json as build artifact?
I am using Gitlab to run my application build jobs. I am using GitLab's built in SAST feature to successfully run SAST against my source code and it provides the results of the analysis in the form of ...
0 votes
0 answers
84 views
Gitlab tag-generated pipeline fails to authenticate glab CLI with gitlab instance to perform release
I am setting up a tag-triggered release pipeline for building and releasing software using GitLab pipelines. In my 'release' stage, I am trying to create a GitLab release for the software, containing ...
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
96 views
How to have a manual job automatically trigger its dependencies
Say I have two jobs: deploy and sca. I want deploy to be manual. I always need the sca job to run before deploy. What can I do: Make both jobs manual and have testing depend on sca via needs. Yet ...
0 votes
0 answers
14 views
Persistent PostgreSQL and Redis Authentication Failure with External PG16/Redis7 & GitLab Helm Chart 9.0.0
I am attempting to deploy GitLab CE (version 18.0, via Helm chart) on a K3s cluster on a single Hetzner Cloud node. As we are low on resources, I am deploying a basically nude GitLab. Ingress will be ...
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
361 views
Issues setting up Gitlab cluster agent with Flux
I'm new to Kubernetes and Flux. I'm trying to set up a Kubernetes cluster to sync with my Gitlab repo using Flux. I'm following this guide and this guide. I created my Kubernetes cluster, then I ...
0 votes
1 answer
34 views
How do you with a GitLab Trial license explore the GitLab container registry?
I am starting a company. I want to use a micro repositories. I can not create more than one Project Access Token, if I do I see Access token limit reached You can only have one active project access ...
0 votes
1 answer
114 views
How to get artifacts from previous merged merge request?
I want to produce a delta of differences of the artifacts between two commits on trunk. I’m considering using gitlab to organise my genealogy research. The output will be various PDF-files that I plan ...
1 vote
2 answers
360 views
Does Claude.AI support GitLab?
I'm wondering if Claude supports GitLab integration. I can upload directly from GitHub but not from GitLab.
0 votes
1 answer
135 views
Gitlab returns ERROR: user canceled the push
When I push up to Gitlab I'm getting, fatal: the remote end hung up unexpectedly remote: remote: ======================================================================== remote: remote: ERROR: user ...
0 votes
0 answers
193 views
Let’s Encrypt certificate is not updated automatically in gitlab (but is updated on gitlab restart)
I have gitlab-ce instance running in docker. When GitLab is started for the first time, it successfully requests and issues Let’s Encrypt SSL certificates. I expect that ~30 days before the expiration ...
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
1 answer
148 views
What is the latest and greatest way to migrate from cvs to git?
I have been reading all over the internet about how to migrate from CVS to git; mostly using a tool cvs2git. However, all of the posts and documentation are really old, and there are dead links for ...
2 votes
1 answer
746 views
how to deploy a docker compose project in gitlab CI/CD
New to the Devop world so my terminology may be limited or incorrect. I have a self-hosted gitlab server. I had a "hello world" container project that spun up a "hello world" ...