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
dd63fd7e
Commit
dd63fd7e
authored
Oct 13, 2021
by
Pedro Pombeiro
Committed by
Jan Provaznik
Oct 13, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove ci_runner_limits feature flag
parent
e755595e
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
11 deletions
+5
-11
app/models/ci/runner_namespace.rb
app/models/ci/runner_namespace.rb
+0
-1
app/models/ci/runner_project.rb
app/models/ci/runner_project.rb
+0
-1
config/feature_flags/development/ci_runner_limits.yml
config/feature_flags/development/ci_runner_limits.yml
+0
-8
doc/administration/instance_limits.md
doc/administration/instance_limits.md
+5
-1
No files found.
app/models/ci/runner_namespace.rb
View file @
dd63fd7e
...
...
@@ -7,7 +7,6 @@ module Ci
self
.
limit_name
=
'ci_registered_group_runners'
self
.
limit_scope
=
:group
self
.
limit_relation
=
:recent_runners
self
.
limit_feature_flag
=
:ci_runner_limits
self
.
limit_feature_flag_for_override
=
:ci_runner_limits_override
belongs_to
:runner
,
inverse_of: :runner_namespaces
...
...
app/models/ci/runner_project.rb
View file @
dd63fd7e
...
...
@@ -7,7 +7,6 @@ module Ci
self
.
limit_name
=
'ci_registered_project_runners'
self
.
limit_scope
=
:project
self
.
limit_relation
=
:recent_runners
self
.
limit_feature_flag
=
:ci_runner_limits
self
.
limit_feature_flag_for_override
=
:ci_runner_limits_override
belongs_to
:runner
,
inverse_of: :runner_projects
...
...
config/feature_flags/development/ci_runner_limits.yml
deleted
100644 → 0
View file @
e755595e
---
name
:
ci_runner_limits
introduced_by_url
:
https://gitlab.com/gitlab-org/gitlab/-/merge_requests/60157
rollout_issue_url
:
https://gitlab.com/gitlab-org/gitlab/-/issues/329438
milestone
:
'
13.12'
type
:
development
group
:
group::runner
default_enabled
:
false
doc/administration/instance_limits.md
View file @
dd63fd7e
...
...
@@ -534,7 +534,11 @@ Plan.default.actual_limits.update!(pages_file_entries: 100)
### Number of registered runners per scope
> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/321368) in GitLab 13.12.
> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/321368) in GitLab 13.12. Disabled by default.
> - Enabled on GitLab.com in GitLab 14.3.
> - Enabled on self-managed in GitLab 14.4.
> - Feature flag `ci_runner_limits` removed in GitLab 14.4. You can still use `ci_runner_limits_override`
to remove limits for a given scope.
The total number of registered runners is limited at the group and project levels. Each time a new runner is registered,
GitLab checks these limits against runners that have been active in the last 3 months.
...
...
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