Commit ed17b643 authored by James Lopez's avatar James Lopez

Merge branch '323159-enable-group-level-devops-adoption' into 'master'

Enable group devops adoption by default

See merge request gitlab-org/gitlab!60638
parents 4c8a45c1 c6bb4aaa
......@@ -5,4 +5,4 @@ rollout_issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/323159
milestone: '13.10'
type: development
group: group::optimize
default_enabled: false
default_enabled: true
......@@ -7,10 +7,8 @@ info: To determine the technical writer assigned to the Stage/Group associated w
# Group DevOps Adoption **(ULTIMATE)**
> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/321083) as a [Beta feature](https://about.gitlab.com/handbook/product/gitlab-the-product/#beta) in GitLab 13.11.
> - [Deployed behind a feature flag](../../../user/feature_flags.md), disabled by default.
> - Disabled on GitLab.com.
> - [Deployed behind a feature flag](../../../user/feature_flags.md), enabled by default.
> - Not recommended for production use.
> - To use in GitLab self-managed instances, ask a GitLab administrator to [enable it](#enable-or-disable-group-devops-adoption).
This in-development feature might not be available for your use. There can be
[risks when enabling features still in development](../../feature_flags.md#risks-when-enabling-features-still-in-development).
......@@ -46,18 +44,18 @@ With DevOps Adoption you can:
## Enable or disable Group DevOps Adoption **(ULTIMATE)**
Group DevOps Adoption is under development and not ready for production use. It is
deployed behind a feature flag that is **disabled by default**.
deployed behind a feature flag that is **enabled by default**.
[GitLab administrators with access to the GitLab Rails console](../../../administration/feature_flags.md)
can enable it.
can disable it.
To enable it:
To disable it:
```ruby
Feature.enable(:group_devops_adoption)
Feature.disable(:group_devops_adoption)
```
To disable it:
To reenable it:
```ruby
Feature.disable(:group_devops_adoption)
Feature.enable(:group_devops_adoption)
```
---
title: Enable group devops adoption by default
merge_request: 60638
author:
type: added
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment