diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2022-01-20 09:16:11 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2022-01-20 09:16:11 +0000 |
commit | edaa33dee2ff2f7ea3fac488d41558eb5f86d68c (patch) | |
tree | 11f143effbfeba52329fb7afbd05e6e2a3790241 /doc/administration/instance_limits.md | |
parent | d8a5691316400a0f7ec4f83832698f1988eb27c1 (diff) | |
download | gitlab-ce-edaa33dee2ff2f7ea3fac488d41558eb5f86d68c.tar.gz |
Add latest changes from gitlab-org/gitlab@14-7-stable-eev14.7.0-rc42
Diffstat (limited to 'doc/administration/instance_limits.md')
-rw-r--r-- | doc/administration/instance_limits.md | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/doc/administration/instance_limits.md b/doc/administration/instance_limits.md index bfe59d5277b..3bedb6b01bd 100644 --- a/doc/administration/instance_limits.md +++ b/doc/administration/instance_limits.md @@ -151,7 +151,7 @@ Plan.default.actual_limits.update!(web_hook_calls: 10) Set the limit to `0` to disable it. -- **Default rate limit**: Disabled. +- **Default rate limit**: Disabled (unlimited). ## Gitaly concurrency limit @@ -230,10 +230,8 @@ There is a limit when embedding metrics in GitLab Flavored Markdown (GFM) for pe ## Number of webhooks -On GitLab.com, the [maximum number of webhooks and their size](../user/gitlab_com/index.md#webhooks) per project, and per group, is limited. - -To set this limit for a self-managed installation, where the default is `100` project webhooks and `50` group webhooks, run the following in the -[GitLab Rails console](operations/rails_console.md#starting-a-rails-console-session): +To set the maximum number of group or project webhooks for a self-managed installation, +run the following in the [GitLab Rails console](operations/rails_console.md#starting-a-rails-console-session): ```ruby # If limits don't exist for the default plan, you can create one with: @@ -248,6 +246,11 @@ Plan.default.actual_limits.update!(group_hooks: 100) Set the limit to `0` to disable it. +- **Default maximum number of webhooks**: `100` per project, `50` per group +- **Maximum payload size**: 25 MB + +For GitLab.com, see the [webhook limits for GitLab.com](../user/gitlab_com/index.md#webhooks). + ## Pull Mirroring Interval > [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/237891) in GitLab 13.7. @@ -640,7 +643,7 @@ To set this limit to `100` on a self-managed instance, run the following command [GitLab Rails console](operations/rails_console.md#starting-a-rails-console-session): ```ruby -Plan.default.actual_limits.update!(dotenv_variable_limit: 100) +Plan.default.actual_limits.update!(dotenv_variables: 100) ``` This limit is [enabled on GitLab.com](../user/gitlab_com/index.md#gitlab-cicd). @@ -658,7 +661,7 @@ To set this limit to 5KB on a self-managed installation, run the following in th [GitLab Rails console](operations/rails_console.md#starting-a-rails-console-session): ```ruby -Plan.default.actual_limits.update!(dotenv_size_limit: 5.kilobytes) +Plan.default.actual_limits.update!(dotenv_size: 5.kilobytes) ``` ## Instance monitoring and metrics |