Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
90f6f967
Commit
90f6f967
authored
Jan 23, 2020
by
Arturo Herrero
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Document self-hosted project webhooks limits
parent
8477249e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
1 deletion
+13
-1
doc/administration/instance_limits.md
doc/administration/instance_limits.md
+13
-1
No files found.
doc/administration/instance_limits.md
View file @
90f6f967
...
...
@@ -43,6 +43,18 @@ A maximum number of project webhooks applies to each GitLab.com tier. Check the
[
Maximum number of webhooks (per tier)
](
../user/project/integrations/webhooks.md#maximum-number-of-webhooks-per-tier
)
section in the Webhooks page.
To set this limit on a self-hosted installation, run the following in the
[
GitLab Rails console
](
https://docs.gitlab.com/omnibus/maintenance/#starting-a-rails-console-session
)
:
```
ruby
# If limits don't exist for the default plan, you can create one with:
# Plan.default.create_limits!
Plan
.
default
.
limits
.
update!
(
project_hooks:
100
)
```
NOTE:
**Note:**
Set the limit to
`0`
to disable it.
## CI/CD limits
### Number of jobs in active pipelines
...
...
@@ -73,4 +85,4 @@ To set this limit on a self-hosted installation, run the following in the
Plan
.
default
.
limits
.
update!
(
ci_active_jobs:
500
)
```
Set the limit to
`0`
to disable it.
NOTE:
**Note:**
Set the limit to
`0`
to disable it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment