Commit 9557703f authored by Heinrich Lee Yu's avatar Heinrich Lee Yu

Merge branch 'make_cluster_management_project_ff_default_enabled' into 'master'

Enable cluster_management_project FF by default

See merge request gitlab-org/gitlab!20216
parents 66018bc6 bb4d6dc2
...@@ -12,7 +12,7 @@ module DeploymentPlatform ...@@ -12,7 +12,7 @@ module DeploymentPlatform
private private
def cluster_management_project_enabled? def cluster_management_project_enabled?
Feature.enabled?(:cluster_management_project, self) Feature.enabled?(:cluster_management_project, self, default_enabled: true)
end end
def find_deployment_platform(environment) def find_deployment_platform(environment)
......
---
title: Specify management project for a Kubernetes cluster
merge_request: 20216
author:
type: added
...@@ -83,7 +83,7 @@ to a management project: ...@@ -83,7 +83,7 @@ to a management project:
| Staging | `staging` | | Staging | `staging` |
| Production | `production` | | Production | `production` |
The the following environments set in The following environments set in
[`.gitlab-ci.yml`](../../ci/yaml/README.md) will deploy to the [`.gitlab-ci.yml`](../../ci/yaml/README.md) will deploy to the
Development, Staging, and Production cluster respectively. Development, Staging, and Production cluster respectively.
...@@ -109,16 +109,3 @@ configure production cluster: ...@@ -109,16 +109,3 @@ configure production cluster:
environment: environment:
name: production name: production
``` ```
## Enabling this feature
This feature is disabled by default. To enable this feature, enable the
feature flag `:cluster_management_project`.
To check if the feature flag is enabled on your GitLab instance,
please ask an administrator to execute the following in a Rails console:
```ruby
Feature.enabled?(:cluster_management_project) # Check if it's enabled or not.
Feature.disable(:cluster_management_project) # Disable the feature flag.
```
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