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
cecfcc86
Commit
cecfcc86
authored
Jul 22, 2020
by
Marcel Amirault
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update feature flag note for ff strategies
parent
2289ce54
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
7 deletions
+9
-7
doc/operations/feature_flags.md
doc/operations/feature_flags.md
+9
-7
No files found.
doc/operations/feature_flags.md
View file @
cecfcc86
...
...
@@ -69,9 +69,11 @@ It can be set to:
## Feature flag strategies
> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/35555) in GitLab 13.0.
> - It's deployed behind a feature flag, disabled by default.
> - It was deployed behind a feature flag, disabled by default.
> - It became [enabled by default](https://gitlab.com/gitlab-org/gitlab/-/issues/214684) in GitLab 13.2.
> - It's recommended for production use.
> - It's enabled on GitLab.com.
> -
To use it in GitLab self-managed instances, ask a GitLab administrator to [en
able it](#enable-or-disable-feature-flag-strategies). **(CORE ONLY)**
> -
For GitLab self-managed instances, a GitLab administrator can choose to [dis
able it](#enable-or-disable-feature-flag-strategies). **(CORE ONLY)**
You can apply a feature flag strategy across multiple environments, without defining
the strategy multiple times.
...
...
@@ -140,21 +142,21 @@ activation strategy.
### Enable or disable feature flag strategies
This feature is under development, but is ready for
testing
. It's
This feature is under development, but is ready for
production use
. It's
deployed behind a feature flag that is
**enabled by default**
.
[
GitLab administrators with access to the GitLab Rails console
](
../administration/feature_flags.md
)
can disable it for your instance.
To
en
able it:
To
dis
able it:
```
ruby
Feature
.
en
able
(
:feature_flags_new_version
)
Feature
.
dis
able
(
:feature_flags_new_version
)
```
To
dis
able it:
To
en
able it:
```
ruby
Feature
.
dis
able
(
:feature_flags_new_version
)
Feature
.
en
able
(
:feature_flags_new_version
)
```
## Disable a feature flag for a specific environment
...
...
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