debian-mirror-gitlab/doc/development/documentation/feature_flags.md

306 lines
10 KiB
Markdown
Raw Normal View History

2020-05-24 23:13:21 +05:30
---
2020-11-24 15:15:51 +05:30
type: reference, dev
stage: none
group: Development
info: "See the Technical Writers assigned to Development Guidelines: https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments-to-development-guidelines"
2020-05-24 23:13:21 +05:30
description: "GitLab development - how to document features deployed behind feature flags"
---
# Document features deployed behind feature flags
GitLab uses [Feature Flags](../feature_flags/index.md) to strategically roll
out the deployment of its own features. The way we document a feature behind a
feature flag depends on its state (enabled or disabled). When the state
changes, the developer who made the change **must update the documentation**
accordingly.
## Criteria
According to the process of [deploying GitLab features behind feature flags](../feature_flags/process.md):
> - _By default, feature flags should be off._
> - _Feature flags should remain in the codebase for a short period as possible to reduce the need for feature flag accounting._
> - _In order to build a final release and present the feature for self-managed users, the feature flag should be at least defaulted to on._
See how to document them below, according to the state of the flag:
- [Features disabled by default](#features-disabled-by-default).
- [Features that became enabled by default](#features-that-became-enabled-by-default).
- [Features directly enabled by default](#features-directly-enabled-by-default).
2020-11-24 15:15:51 +05:30
- [Features that can be enabled or disabled for a single project](#features-enabled-by-project).
2020-05-24 23:13:21 +05:30
- [Features with the feature flag removed](#features-with-flag-removed).
2021-02-22 17:27:13 +05:30
The [`**(CORE ONLY)**`](styleguide/index.md#product-tier-badges) badge or equivalent for
2020-05-24 23:13:21 +05:30
the feature's tier should be added to the line and heading that refers to
enabling/disabling feature flags as Admin access is required to do so,
therefore, it indicates that it cannot be done by regular users of GitLab.com.
### Features disabled by default
2021-03-08 18:12:59 +05:30
For features disabled by default, add or improve the docs with every change in line with the
[definition of done](../contributing/merge_request_workflow.md#definition-of-done).
2020-05-24 23:13:21 +05:30
2021-03-08 18:12:59 +05:30
Include details of the feature flag in the documentation:
2020-05-24 23:13:21 +05:30
- Say that it's disabled by default.
- Say whether it's enabled on GitLab.com.
2020-11-24 15:15:51 +05:30
- If the feature can be enabled/disabled for a single project, add the
[by-project information](#features-enabled-by-project). Otherwise,
do not say anything about it.
2020-05-24 23:13:21 +05:30
- Say whether it's recommended for production use.
- Document how to enable and disable it.
2021-01-03 14:25:43 +05:30
- Add a warning to the user saying that the feature might be disabled.
2020-05-24 23:13:21 +05:30
2020-11-24 15:15:51 +05:30
For example, for a feature disabled by default, disabled on GitLab.com, cannot
be enabled for a single project, and is not ready for production use:
2020-05-24 23:13:21 +05:30
````markdown
# Feature Name
> - [Introduced](link-to-issue) in GitLab 12.0.
2020-11-24 15:15:51 +05:30
> - It's [deployed behind a feature flag](<replace with path to>/user/feature_flags.md), disabled by default.
2020-05-24 23:13:21 +05:30
> - It's disabled on GitLab.com.
> - It's not recommended for production use.
> - To use it in GitLab self-managed instances, ask a GitLab administrator to [enable it](#anchor-to-section). **(CORE ONLY)**
2021-02-22 17:27:13 +05:30
WARNING:
2020-11-24 15:15:51 +05:30
This feature might not be available to you. Check the **version history** note above for details.
(...Regular content goes here...)
<!-- Add this at the end of the file -->
2020-05-24 23:13:21 +05:30
### Enable or disable <Feature Name> **(CORE ONLY)**
<Feature Name> is under development and not ready for production use. It is
deployed behind a feature flag that is **disabled by default**.
2020-11-24 15:15:51 +05:30
[GitLab administrators with access to the GitLab Rails console](<replace with path to>/administration/feature_flags.md)
can enable it.
2020-05-24 23:13:21 +05:30
To enable it:
```ruby
Feature.enable(:<feature flag>)
```
To disable it:
```ruby
Feature.disable(:<feature flag>)
```
````
Adjust the blurb according to the state of the feature you're documenting.
2020-11-24 15:15:51 +05:30
Replace `<Feature name>`, `**(CORE ONLY)**`, `<feature flag>`, and
`<replace with path to>`, and `#anchor-to-section` accordingly.
2020-05-24 23:13:21 +05:30
### Features that became enabled by default
2020-11-24 15:15:51 +05:30
For features that were released disabled by default but became enabled by
default:
2020-05-24 23:13:21 +05:30
- Say that it became enabled by default.
- Say whether it's enabled on GitLab.com.
2020-11-24 15:15:51 +05:30
- If the feature can be enabled/disabled for a single project, add the
[by-project information](#features-enabled-by-project). Otherwise,
do not say anything about it.
2020-05-24 23:13:21 +05:30
- Say whether it's recommended for production use.
- Document how to disable and enable it.
2020-11-24 15:15:51 +05:30
- Add a warning to the user saying that the feature might be disabled.
2020-05-24 23:13:21 +05:30
2020-11-24 15:15:51 +05:30
For example, for a feature initially deployed disabled by default, that became
enabled by default, that is enabled on GitLab.com, and is ready for production
use:
2020-05-24 23:13:21 +05:30
````markdown
# Feature Name
> - [Introduced](link-to-issue) in GitLab 12.0.
2020-11-24 15:15:51 +05:30
> - It was [deployed behind a feature flag](<replace with path to>/user/feature_flags.md), disabled by default.
2020-05-24 23:13:21 +05:30
> - [Became enabled by default](link-to-issue) on GitLab 12.1.
> - It's enabled on GitLab.com.
> - It's recommended for production use.
> - For GitLab self-managed instances, GitLab administrators can opt to [disable it](#anchor-to-section). **(CORE ONLY)**
2021-02-22 17:27:13 +05:30
WARNING:
2020-11-24 15:15:51 +05:30
This feature might not be available to you. Check the **version history** note above for details.
(...Regular content goes here...)
<!-- Add this at the end of the file -->
2020-05-24 23:13:21 +05:30
### Enable or disable <Feature Name> **(CORE ONLY)**
<Feature Name> is under development but ready for production use.
It is deployed behind a feature flag that is **enabled by default**.
2020-11-24 15:15:51 +05:30
[GitLab administrators with access to the GitLab Rails console](<replace with path to>/administration/feature_flags.md)
can opt to disable it.
2020-05-24 23:13:21 +05:30
2020-11-24 15:15:51 +05:30
To enable it:
2020-05-24 23:13:21 +05:30
```ruby
2020-11-24 15:15:51 +05:30
Feature.enable(:<feature flag>)
2020-05-24 23:13:21 +05:30
```
2020-11-24 15:15:51 +05:30
To disable it:
2020-05-24 23:13:21 +05:30
```ruby
2020-11-24 15:15:51 +05:30
Feature.disable(:<feature flag>)
2020-05-24 23:13:21 +05:30
```
````
Adjust the blurb according to the state of the feature you're documenting.
2020-11-24 15:15:51 +05:30
Replace `<Feature name>`, `**(CORE ONLY)**`, `<feature flag>`,
`<replace with path to>`, and `#anchor-to-section` accordingly.
2020-05-24 23:13:21 +05:30
### Features directly enabled by default
For features enabled by default:
- Say it's enabled by default.
- Say whether it's enabled on GitLab.com.
2020-11-24 15:15:51 +05:30
- If the feature can be enabled/disabled for a single project, add the
[by-project information](#features-enabled-by-project). Otherwise,
do not say anything about it.
2020-05-24 23:13:21 +05:30
- Say whether it's recommended for production use.
- Document how to disable and enable it.
2020-11-24 15:15:51 +05:30
- Add a warning to the user saying that the feature might be disabled.
2020-05-24 23:13:21 +05:30
2020-11-24 15:15:51 +05:30
For example, for a feature enabled by default, enabled on GitLab.com, that
cannot be enabled for a single project, and is ready for production use:
2020-05-24 23:13:21 +05:30
````markdown
# Feature Name
> - [Introduced](link-to-issue) in GitLab 12.0.
2020-11-24 15:15:51 +05:30
> - It's [deployed behind a feature flag](<replace with path to>/user/feature_flags.md), enabled by default.
2020-05-24 23:13:21 +05:30
> - It's enabled on GitLab.com.
> - It's recommended for production use.
> - For GitLab self-managed instances, GitLab administrators can opt to [disable it](#anchor-to-section). **(CORE ONLY)**
2021-02-22 17:27:13 +05:30
WARNING:
2020-11-24 15:15:51 +05:30
This feature might not be available to you. Check the **version history** note above for details.
(...Regular content goes here...)
<!-- Add this at the end of the file -->
2020-05-24 23:13:21 +05:30
### Enable or disable <Feature Name> **(CORE ONLY)**
<Feature Name> is under development but ready for production use.
It is deployed behind a feature flag that is **enabled by default**.
2020-11-24 15:15:51 +05:30
[GitLab administrators with access to the GitLab Rails console](<replace with path to>/administration/feature_flags.md)
can opt to disable it.
To enable it:
```ruby
Feature.enable(:<feature flag>)
```
2020-05-24 23:13:21 +05:30
To disable it:
```ruby
Feature.disable(:<feature flag>)
```
2020-11-24 15:15:51 +05:30
````
2020-05-24 23:13:21 +05:30
2020-11-24 15:15:51 +05:30
Adjust the blurb according to the state of the feature you're documenting.
Replace `<Feature name>`, `**(CORE ONLY)**`, `<feature flag>`,
`<replace with path to>`, and `#anchor-to-section` accordingly.
### Features enabled by project
If the feature can be enabled/disabled for a single project, include in the
version history note:
```markdown
> - It can be enabled or disabled for a single project.
```
Then add the by-project code to the code blocks:
Enable code:
```ruby
# For the instance
Feature.enable(:<feature flag>)
# For a single project
Feature.enable(:<feature flag>, Project.find(<project id>))
```
Disable code:
```ruby
# For the instance
Feature.disable(:<feature flag>)
# For a single project
Feature.disable(:<feature flag>, Project.find(<project id>))
```
For example, for a feature enabled by default, enabled on GitLab.com, that can
be enabled by project, and is ready for production use:
````markdown
# Feature Name
> - [Introduced](link-to-issue) in GitLab 12.0.
> - It's [deployed behind a feature flag](<replace with path to>/user/feature_flags.md), enabled by default.
> - It's enabled on GitLab.com.
2021-01-03 14:25:43 +05:30
> - It can be enabled or disabled for a single project.
2020-11-24 15:15:51 +05:30
> - It's recommended for production use.
> - For GitLab self-managed instances, GitLab administrators can opt to [disable it](#anchor-to-section). **(CORE ONLY)**
2021-02-22 17:27:13 +05:30
WARNING:
2020-11-24 15:15:51 +05:30
This feature might not be available to you. Check the **version history** note above for details.
(...Regular content goes here...)
<!-- Add this at the end of the file -->
### Enable or disable <Feature Name> **(CORE ONLY)**
<Feature Name> is under development but ready for production use.
It is deployed behind a feature flag that is **enabled by default**.
[GitLab administrators with access to the GitLab Rails console](<replace with path to>/administration/feature_flags.md)
can opt to disable it.
To enabled it:
2020-05-24 23:13:21 +05:30
```ruby
2020-11-24 15:15:51 +05:30
# For the instance
2020-05-24 23:13:21 +05:30
Feature.enable(:<feature flag>)
2020-11-24 15:15:51 +05:30
# For a single project
Feature.enable(:<feature flag>, Project.find(<project id>))
```
To disable it:
```ruby
# For the instance
Feature.disable(:<feature flag>)
# For a single project
Feature.disable(:<feature flag>, Project.find(<project id>))
2020-05-24 23:13:21 +05:30
```
````
Adjust the blurb according to the state of the feature you're documenting.
2020-11-24 15:15:51 +05:30
Replace `<Feature name>`, `**(CORE ONLY)**`, `<feature flag>`,
`<replace with path to>`, and `#anchor-to-section` accordingly.
2020-05-24 23:13:21 +05:30
### Features with flag removed
Once the feature is ready and the flag has been removed, clean up the
documentation. Remove the feature flag mention keeping only a note that
mentions the flag in the version history notes:
````markdown
# Feature Name
> - [Introduced](link-to-issue) in GitLab 12.0.
> - [Feature flag removed](link-to-issue) in GitLab 12.2.
2020-11-24 15:15:51 +05:30
(...Regular content...)
2020-05-24 23:13:21 +05:30
````