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
18 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
44 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
12 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
1 answer
338 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
112 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 ...
0 votes
1 answer
130 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
1 answer
101 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-...
2 votes
1 answer
730 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" ...