From 6ba7576b0b6c9551eee1928c09a5fb1cf62b49a0 Mon Sep 17 00:00:00 2001 From: Alexander Meindl Date: Fri, 21 Jun 2024 20:55:17 +0200 Subject: [PATCH] switch to gitlab 17.1.x --- roles/gitlab/templates/gitlab/gitlab.yml.j2 | 45 +++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/roles/gitlab/templates/gitlab/gitlab.yml.j2 b/roles/gitlab/templates/gitlab/gitlab.yml.j2 index 286f330..3070d14 100644 --- a/roles/gitlab/templates/gitlab/gitlab.yml.j2 +++ b/roles/gitlab/templates/gitlab/gitlab.yml.j2 @@ -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: | + # + # + ## 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. @@ -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