[v10.0.x] Authentication UI: Enable by default (#69803) (#69810)

Authentication UI: Enable by default (#69803)

(cherry picked from commit 4e1f69d83f)
This commit is contained in:
Alexander Zobnin
2023-06-08 17:23:02 +01:00
committed by GitHub
parent d9995996e7
commit 5dacbb97e0
3 changed files with 4 additions and 3 deletions
@@ -39,6 +39,7 @@ Some stable features are enabled by default. You can disable a stable feature by
| `lokiMetricDataplane` | Changes metric responses from Loki to be compliant with the dataplane specification. | Yes |
| `dataplaneFrontendFallback` | Support dataplane contract field name change for transformations and field name matchers where the name is different | Yes |
| `useCachingService` | When turned on, the new query and resource caching implementation using a wire service inject will be used in place of the previous middleware implementation | |
| `authenticationConfigUI` | Enables authentication configuration UI | Yes |
| `advancedDataSourcePicker` | Enable a new data source picker with contextual information, recently used order and advanced mode | Yes |
## Beta feature toggles
@@ -108,7 +109,6 @@ Alpha features might be changed or removed without prior notice.
| `alertStateHistoryLokiOnly` | Disable Grafana alerts from emitting annotations when a remote Loki instance is available. |
| `unifiedRequestLog` | Writes error logs to the request logger |
| `pyroscopeFlameGraph` | Changes flame graph to pyroscope one |
| `authenticationConfigUI` | Enables authentication configuration UI |
| `pluginsAPIManifestKey` | Use grafana.com API to retrieve the public manifest key |
| `opensearchDetectVersion` | Enable version detection in OpenSearch |
+2 -1
View File
@@ -501,7 +501,8 @@ var (
{
Name: "authenticationConfigUI",
Description: "Enables authentication configuration UI",
State: FeatureStateAlpha,
State: FeatureStateStable,
Expression: "true",
Owner: grafanaAuthnzSquad,
},
{
+1 -1
View File
@@ -73,7 +73,7 @@ externalServiceAuth,alpha,@grafana/grafana-authnz-team,true,false,false,false
refactorVariablesTimeRange,beta,@grafana/dashboards-squad,false,false,false,false
useCachingService,stable,@grafana/grafana-operator-experience-squad,false,false,true,false
enableElasticsearchBackendQuerying,beta,@grafana/observability-logs,false,false,false,false
authenticationConfigUI,alpha,@grafana/grafana-authnz-team,false,false,false,false
authenticationConfigUI,stable,@grafana/grafana-authnz-team,false,false,false,false
pluginsAPIManifestKey,alpha,@grafana/plugins-platform-backend,false,false,false,false
advancedDataSourcePicker,stable,@grafana/dashboards-squad,false,false,false,true
opensearchDetectVersion,alpha,@grafana/aws-plugins,false,false,false,true
1 Name State Owner requiresDevMode RequiresLicense RequiresRestart FrontendOnly
73 refactorVariablesTimeRange beta @grafana/dashboards-squad false false false false
74 useCachingService stable @grafana/grafana-operator-experience-squad false false true false
75 enableElasticsearchBackendQuerying beta @grafana/observability-logs false false false false
76 authenticationConfigUI alpha stable @grafana/grafana-authnz-team false false false false
77 pluginsAPIManifestKey alpha @grafana/plugins-platform-backend false false false false
78 advancedDataSourcePicker stable @grafana/dashboards-squad false false false true
79 opensearchDetectVersion alpha @grafana/aws-plugins false false false true