File tree Expand file tree Collapse file tree 4 files changed +11
-0
lines changed
Expand file tree Collapse file tree 4 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -57,6 +57,7 @@ Then perform the following commands on the root folder:
5757| gitlab\_ enable\_ omniauth | Choose whether to enable Gitlab Omniauth integration. Default to false. | ` bool ` | ` false ` | no |
5858| gitlab\_ enable\_ registry | Choose whether to enable Gitlab Container registry. Default to false. | ` bool ` | ` false ` | no |
5959| gitlab\_ enable\_ restore\_ pv | Enable additional storage for TAR Restoration creation of any appreciable size | ` bool ` | ` false ` | no |
60+ | gitlab\_ enable\_ service\_ ping | Enable Gitlab Service Ping | ` bool ` | ` true ` | no |
6061| gitlab\_ enable\_ smtp | Setup Gitlab email address to send email. | ` bool ` | ` false ` | no |
6162| gitlab\_ gitaly\_ disk\_ size | Setup persistent disk size for gitaly data in GB. Default 100 GB | ` number ` | ` 100 ` | no |
6263| gitlab\_ gitaly\_ max\_ unavailable | For PodDisruptionBudget, how many pods can be unavailable at one time for Gitaly StatefulSet | ` number ` | ` 0 ` | no |
Original file line number Diff line number Diff line change @@ -560,6 +560,7 @@ locals {
560560 ENABLE_MIGRATIONS = var.gitab_enable_migrations
561561 ENABLE_PROM_EXPORTER = var.gitab_enable_prom_exporter
562562 GITALY_MAX_UNAVAILABLE = var.gitlab_gitaly_max_unavailable
563+ ENABLE_SERVICE_PING = var.gitlab_enable_service_ping
563564
564565 # Bucket Names
565566 ARTIFACTS_BCKT = google_storage_bucket.gitlab_bucket[" artifacts" ].name
Original file line number Diff line number Diff line change @@ -47,6 +47,9 @@ global:
4747 # # doc/charts/globals.md#configure-appconfig-settings
4848 # # Rails based portions of this chart share many settings
4949 appConfig :
50+ # # doc/charts/globals.md#general-application-settings
51+ enableUsagePing : ${ENABLE_SERVICE_PING}
52+
5053 # # https://docs.gitlab.com/charts/charts/globals#cron-jobs-related-settings
5154 cron_jobs : {}
5255
Original file line number Diff line number Diff line change @@ -493,6 +493,12 @@ variable "gitab_enable_prom_exporter" {
493493 default = false
494494}
495495
496+ variable "gitlab_enable_service_ping" {
497+ type = bool
498+ description = " Enable Gitlab Service Ping"
499+ default = true
500+ }
501+
496502# Peformance optimization. Max and min pod replicas for HPA.
497503variable "gitlab_hpa_min_replicas_registry" {
498504 type = number
You can’t perform that action at this time.
0 commit comments