Questions tagged [gitlab-ee]

54 questions
1
vote
1 answer

How to Scale out Gitlab EE

Currently I am running the whole gitlab EE as a single container. I need to scale out the service so that it can support more users and more operations/pull/push/Merge Requests etc simultanously. I need to run a redis cluster of its own I need to…
Ijaz Ahmad
  • 11,198
  • 9
  • 53
  • 73
0
votes
0 answers

Gitlab rules with variable assignment does not work

The variable in the rules is not being substituted to "Debug" when the job is run. The pipeline job is following... variables: OBJECTS_DIRECTORY: obj NUGET_PACKAGES_DIRECTORY: ".nuget" SOURCE_PATH: src/ build: image:…
CodeWeed
  • 971
  • 2
  • 21
  • 40
0
votes
0 answers

GitLab Ultimate: it is possible to determine if project use any of enterprise features?

I have one GitLab instance with Ultimate plan and have to "downgrade" it to GitLab CE (free plan). I need to list projects that are using any of features available in Ultimate plan only. So my question is: is there any way to check it with REST…
pawels
  • 1
  • 3
0
votes
0 answers

Cannot obtain an exclusive lease for ci/pipeline_processing/atomic_processing_service::pipeline_id:There must be another instance already in execution

I have set up an external sidekiq node using omnibus gitlab but I keep getting this error whenever I do merge requests, run pipelines etc. Currently, sidekiq is turned off in the main gitlab installation. Correct gitaly and Redis configurations have…
0
votes
0 answers

"Removed configurations found in gitlab.rb. Aborting reconfigure", when upgrading from Gitlab 14.10.5 to 15.0.2

I’m trying to upgrade my docker gitlab-ee from 14.10.5 to 15.0.2, but I’m getting this error: RuntimeError Removed configurations found in gitlab.rb. Aborting reconfigure. ------------ Removed configurations found in gitlab.rb. Aborting…
0
votes
0 answers

Gitlab SaaS, static IP for whitelisting

I am currently in the process of setting up a restricted EC2 instance where some services is whitelisted IP wise. One the service that I am trying to whitelist is gitlab. Are there any static IPs that I can use to do this?
0
votes
0 answers

Using a variable in GitLab CICD pipeline rules clause

In my GitLab CICD pipeline I've defined a job with the following rule: rules: - if: $TERRAFORM_ENVIRONMENT == "qa" && $TERRAFORM_EXCLUDED_ENVIRONMENTS !~ /qa/ Each job has an environment clause and its name defined. This allows me to target the…
Alex
  • 1,293
  • 1
  • 13
  • 26
0
votes
1 answer

Elastic Search integration with Gitlab

I am working on integrating elasticsearch with gitlab. So, i have created one elasticsearch server and enabled https for it by using self signed certificates. when i tried to integrate with gitlab its giving me 500 error and below is the log i…
Sai Vamsi
  • 111
  • 3
  • 19
0
votes
1 answer

GitLab upgrade from 9.5.10 to 10.8.7 unsuccessful

After installing the package for 10.8.7, which is the next supported upgrade path per https://docs.gitlab.com/ee/update/#upgrade-paths, gitlab-ctl reconfigure fails…
Erik Johnson
  • 858
  • 1
  • 7
  • 29
0
votes
2 answers

GitLabee Authentication failed

There is a repository i always use in Gitlabee. When I tried 'git pull origin modal_control' in git bash, openSSH tab opens and ask to me username and password. I entered the username and passwaord. But git bash gives me this output: $ git pull…
sssss_sssss
  • 161
  • 2
  • 14
0
votes
1 answer

Gitlab EE: Inherited start and end date for epic are not updated

I'm posting this bug here, with a workaround solution. I tried to upload it to Gitlab's Gitlab, but my issue can't be submitted because it is detected as a spam, for whatever reason. Maybe if a Gitlab's staff member sees it here they can…
Benjamin Barrois
  • 2,566
  • 13
  • 30
0
votes
1 answer

Why does GitLab merge request returns "500 Internal Server Error"?

My user wants to merge a request on our hosted GitLab EE 11.5.2 website. But the website returns 500 Internal Server Error as follows: The related log is as follows: Completed 500 Internal Server Error in 56565ms (ActiveRecord: 746.1ms |…
skyline
  • 443
  • 9
  • 31
0
votes
1 answer

GITLAB branch not inheriting Group variables

I created 4 group variables in GITLAB. However, when I go into the master branch CI/CD settings and go to variables I don't see the group variables. From my understanding, the branch is suppose to inherit those global variables. Does anyone know…
0
votes
1 answer

gitlab interface performance is slow

My gitlab is slow when I switch between projects in the web interface. I have loading times between 1000ms to 2000ms. It's run in my local network and i have the following configuration. 4 CPUs 6GB memory, SSD Disks and Ubuntu 20. My gitlab version…
live2
  • 3,771
  • 2
  • 37
  • 46
0
votes
1 answer

How to avoid a loop in GitLab CI/CD

I am trying to update the tag of a version.json file in a repo and commit the same file to the repository through GitLab CI. This results in pipeline falling into a loop. only: refs: - master except: changes: - version.json If I place…
Biplab
  • 233
  • 4
  • 15