Questions tagged [gitlab]
GitLab is an open source repository management system with issue tracking, wiki and deployment features. Mainly written in Ruby, it has a community version enterprise version. It's developed by GitLab Inc.,
75 questions
0
votes
1
answer
60
views
Does a load of 41.20 (!?) suggest a hardware failure?
I have Ubuntu 24.04 on a Raspberry Pi 4 and after months of working fine,
today it has jumped to a load 41 for no apparent reason.
Can't connect to remote MySQL instance from the server.
And gitlab ...
0
votes
0
answers
38
views
GitLab Authentik SAML Groups not working as expected
I've configured GitLab to work with my Authentik SSO:
gitlab_rails['omniauth_providers'] = [
{
name: 'saml',
label: 'Company SSO',
groups_attribute: 'Groups',
required_groups: ['...
0
votes
1
answer
94
views
GitLab CI/CD: Create tar.gz with content inside current working dir and save tar.gz inside current working dir: tar: .: file changed as we read it
I'm trying to create an archive e.g. archive.tar.gz inside the current working directory e.g. /builds/project/ without saving the archive.tar.gz inside archive.tar.gz.
To prevent this I'm trying to ...
1
vote
0
answers
21
views
heptapod: include version number in file name?
I'm trying to maintain an install script for Tryton ERP at Tryton community. I'd find it useful to have a version number in the file name; to manage this, when committing I'd like to have a prompt to ...
0
votes
1
answer
68
views
What's the difference between gitlab and gitlab runner while they're deployed at the custom server?
Am I right that gitlab service is like a controller (so it's reflected by gitlab-ctl) for gitlab-runner?
Gitlab service at Linux server in particular stores the configurations needed for gitlab-runner....
-5
votes
1
answer
79
views
What's the deal with gitlab (and github?) security? [closed]
I just wanted to raise an issue (ie. report a bug) in some software package hosted on gitlab. I have a github account, but not a gitlab one.
Whenever I log in from a new device (github), I need to &...
0
votes
1
answer
56
views
Can't install GDK on Catalina
Welcome, while trying to install Gitlab GDK on a MacBook Pro Catalina 16G RAM it goes ok except three dependencies which already exist but the GDK says they are not installed or outdated!
bin/gdk ...
0
votes
1
answer
43
views
Fargate Linux Github Runner cannot find specific URL (nslookup) from private network over VPN
I run the Worker container (Fargate Worker: https://docs.gitlab.com/runner/configuration/runner_autoscale_aws_fargate/).
My problem is that the container (Gitlab-runner) is running on Fargate ('awsvpc'...
0
votes
1
answer
98
views
How to split long commands containing special character into multiline commands?
I have been reading documentation from gitlab at:
https://docs.gitlab.com/ee/ci/yaml/script.html#split-long-commands
In my case I have a special character (colon ':'), so I also did read:
https://...
0
votes
1
answer
148
views
Command section syntax in .gitlab-ci.yml file
I have the following .gitlab-ci.yml file :
stages:
- publish
- deploy
variables:
TAG_LATEST: $CI_REGISTRY_IMAGE/$CI_COMMIT_REF_NAME:latest
TAG_COMMIT: $CI_REGISTRY_IMAGE/$CI_COMMIT_REF_NAME:$...
3
votes
0
answers
812
views
Why does buildah fail mounting overlays?
I am running buildah(quay.io/containers/buildah) in a gitlab CI/CD pipeline(kubernetes pod), but it fails building images.
buildah bud . returns:
mount /var/lib/containers/storage/overlay:/var/lib/...
0
votes
0
answers
1k
views
Connection refused for unsecure Gitlab container registry
I'm hosting a gitlab-ce instance with runners on a Ubuntu 22.04.2 LTS server with docker compose :
version: '3.7'
services:
web:
image: 'gitlab/gitlab-ce:latest'
restart: always
hostname:...
1
vote
0
answers
860
views
Permission denied while trying to SSH from gitlab runner to deploy server
I am trying to deploy gitlab repository to my server in gitlab ci pipeline using this pipeline
stages:
- deploy
deploy:
stage: deploy
only:
- main
before_script:
- apk add --update --...
0
votes
1
answer
1k
views
Clearing log files located in var/log (RHEL)
I am investigating the retention of logs in var/log/ for a server that hosts Gitlab.
There are multiple logs here as listed below:
Boot.log
Cron
maillog
Messages
Secure
spooler
yum.log
Is there a way ...
0
votes
0
answers
58
views
Is there any way to automatically merge commits from master another branch whenever there is any merge request for master?
Is there any way to automatically merge commits from master another branch whenever there is any merge request for master?
want to add to JenkinsFile as well.