forked from cloudfoundry/docs-cf-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlisting-feature-flags.html.md.erb
92 lines (71 loc) · 4.73 KB
/
listing-feature-flags.html.md.erb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
---
title: Using Feature Flags
owner: CLI
---
<strong><%= modified_date %></strong>
This topic describes how Cloud Foundry (CF) administrators can set feature flags using the Cloud Foundry Command Line Interface (cf CLI) to enable or disable the features available to users.
## <a id='flag-commands'></a>View and Edit Feature Flags
To perform the following procedures, you must be logged in to your deployment as an administrator using the cf CLI.
1. Use the `cf feature-flags` command to list the feature flags:
<pre class="terminal">
$ cf feature-flags
Features State
user_org_creation disabled
private_domain_creation enabled
app_bits_upload enabled
app_scaling enabled
route_creation enabled
service_instance_creation enabled
diego_docker disabled
set_roles_by_username enabled
unset_roles_by_username enabled
task_creation enabled
env_var_visibility enabled
space_scoped_private_broker_creation enabled
space_developer_env_var_visibility enabled
service_instance_sharing disabled
hide_marketplace_from_unauthenticated_users disabled
</pre>
<br>
For descriptions of the features enabled by each feature flag, see the [Feature Flags](#flags) section below.
1. To view the status of a feature flag, use the `cf feature-flag FEATURE-FLAG-NAME` command:
<pre class="terminal">
$ cf feature-flag user_org_creation
Retrieving status of user_org_creation as admin...
OK
Features State
user_org_creation disabled
</pre>
1. To enable a feature flag, use the `cf enable-feature-flag FEATURE-FLAG-NAME` command:
<pre class="terminal">
$ cf enable-feature-flag user_org_creation
</pre>
1. To disable a feature flag, use the `cf disable-feature-flag FEATURE-FLAG-NAME` command:
<pre class="terminal">
$ cf disable-feature-flag user_org_creation
</pre>
## <a id='flags'></a>Feature Flags ##
Only administrators can set feature flags.
All flags are enabled by default except `user_org_creation` and `diego_docker`.
When disabled, these features are only available to administrators.
The following list provides descriptions of the features enabled or disabled by
each flag, and the minimum Cloud Controller API (CC API) version necessary to use the feature. <%= vars.api_version %>:
* `user_org_creation`: Any user can create an organization. <%= vars.user_org_creation %> Minimum CC API version: 2.12.
* `private_domain_creation`: An Org Manager can create private domains for that organization. Minimum CC API version: 2.12.
* `app_bits_upload`: Space Developers can upload app bits. Minimum CC API version: 2.12.
* `app_scaling`: Space Developers can perform scaling operations (i.e. change memory, disk, or instances). Minimum CC API version: 2.12.
* `route_creation`: Space Developers can create routes in a space. Minimum CC API version: 2.12.
* `service_instance_creation`: Space Developers can create service instances in a space. Minimum CC API version: 2.12.
* `diego_docker`: Space Developers can push Docker apps. Minimum CC API version 2.33.
* `set_roles_by_username`: Org Managers and Space Managers can add roles by username. Minimum CC API version: 2.37.
* `unset_roles_by_username`: Org Managers and Space Managers can remove roles by username. Minimum CC API version: 2.37.
* `task_creation`: Space Developers can create tasks on their application. Minimum CC API version: 2.47.
* `env_var_visibility`: All users can view environment variables. Minimum CC API version: 2.58.
* `space_scoped_private_broker_creation`: Space Developers can create space-scoped private service brokers. Minimum CC API version: 2.58.
* `space_developer_env_var_visibility`: Space Developers can view their v2 environment variables. Org Managers and Space Managers can view their v3 environment variables. Minimum CC API version: 2.58.
* `service_instance_sharing`: Space Developers can share service instances between two spaces (across orgs) in which they have the Space Developer role.
* `hide_marketplace_from_unauthenticated_users`: Do not allow unauthenticated users to see the service offerings available in the marketplace.
For more information about feature flag commands, see the **Feature Flags**
section of the [Cloud Foundry API documentation](http://apidocs.cloudfoundry.org).
## <a id="disabling-custom-buildpacks"></a>Disabling Custom Buildpacks ##
<%=vars.disable_custom_buildpacks%>