Skip to content

Commit

Permalink
switch to gitlab 17.1.x
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandermeindl committed Jun 21, 2024
1 parent 58cdedc commit 6ba7576
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions roles/gitlab/templates/gitlab/gitlab.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,15 @@ production: &base
## 11 - Dark Mode (alpha)
default_theme: {{ gitlab_default_theme }}

## Custom html header tags
# In some cases some custom header tags are needed
# e.g., to add the EU cookie consent
# Tip: you must add the externals source to the content_security_policy as
# well, typically the script_src and style_src.
# custom_html_header_tags: |
# <script src="https://example.com/cookie-consent.js"></script>
# <link rel="stylesheet" href="https://example.com/cookie-consent.css"/>

## Automatic issue closing
# If a commit message matches this regular expression, all issues referenced from the matched text will be closed.
# This happens when the commit is pushed or merged into the default branch of a project.
Expand Down Expand Up @@ -720,6 +729,42 @@ production: &base
# Default is '.gitlab_workhorse_secret' relative to Rails.root (i.e. root of the GitLab app).
# secret_file: /home/git/gitlab/.gitlab_workhorse_secret

topology_service:
# enabled: false
# address: topology-service.gitlab.example.com:443
# ca_file: /home/git/gitlab/config/topology-service-ca.pem
# certificate_file: /home/git/gitlab/config/topology-service-cert.pem
# private_key_file: /home/git/gitlab/config/topology-service-key.pem

cell:
# name: cell-1

gitlab_kas:
# enabled: true
# File that contains the secret key for verifying access for gitlab-kas.
# Default is '.gitlab_kas_secret' relative to Rails.root (i.e. root of the GitLab app).
# secret_file: /home/git/gitlab/.gitlab_kas_secret

# The URL to the external KAS API (used by the Kubernetes agents)
# external_url: wss://kas.example.com

# The URL to the internal KAS API (used by the GitLab backend)
# internal_url: grpc://localhost:8153

# The URL to the Kubernetes API proxy (used by GitLab users)
# external_k8s_proxy_url: https://localhost:8154 # default: nil

suggested_reviewers:
# File that contains the secret key for verifying access to GitLab internal API for Suggested Reviewers.
# Default is '.gitlab_suggested_reviewers_secret' relative to Rails.root (i.e. root of the GitLab app).
# secret_file: /home/git/gitlab/.gitlab_suggested_reviewers_secret

zoekt:
# Files that contain username and password for basic auth for Zoekt
# Default is '.gitlab_zoekt_username' and '.gitlab_zoekt_password' in Rails.root
# username_file: /home/git/gitlab/.gitlab_zoekt_username
# password_file: /home/git/gitlab/.gitlab_zoekt_password

## Git settings
# CAUTION!
# Use the default values unless you really know what you are doing
Expand Down

0 comments on commit 6ba7576

Please sign in to comment.