mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
IDForwarding: Remove dev mode restriction for feature toggle (#79358)
Remove dev mode restriction for id forwarding feature toggle
This commit is contained in:
parent
19ad788333
commit
69784efa35
@ -140,6 +140,7 @@ Experimental features might be changed or removed without prior notice.
|
||||
| `externalCorePlugins` | Allow core plugins to be loaded as external |
|
||||
| `pluginsAPIMetrics` | Sends metrics of public grafana packages usage by plugins |
|
||||
| `httpSLOLevels` | Adds SLO level to http request metrics |
|
||||
| `idForwarding` | Generate signed id token for identity that can be forwarded to plugins and external services |
|
||||
| `panelMonitoring` | Enables panel monitoring through logs and measurements |
|
||||
| `enableNativeHTTPHistogram` | Enables native HTTP Histograms |
|
||||
| `formatString` | Enable format string transformer |
|
||||
@ -172,12 +173,11 @@ Experimental features might be changed or removed without prior notice.
|
||||
|
||||
The following toggles require explicitly setting Grafana's [app mode]({{< relref "../_index.md#app_mode" >}}) to 'development' before you can enable this feature toggle. These features tend to be experimental.
|
||||
|
||||
| Feature toggle name | Description |
|
||||
| ------------------------------------- | -------------------------------------------------------------------------------------------- |
|
||||
| `unifiedStorage` | SQL-based k8s storage |
|
||||
| `externalServiceAuth` | Starts an OAuth2 authentication provider for external services |
|
||||
| `grafanaAPIServerEnsureKubectlAccess` | Start an additional https handler and write kubectl options |
|
||||
| `idForwarding` | Generate signed id token for identity that can be forwarded to plugins and external services |
|
||||
| `externalServiceAccounts` | Automatic service account and token setup for plugins |
|
||||
| `panelTitleSearchInV1` | Enable searching for dashboards using panel title in search v1 |
|
||||
| `ssoSettingsApi` | Enables the SSO settings API |
|
||||
| Feature toggle name | Description |
|
||||
| ------------------------------------- | -------------------------------------------------------------- |
|
||||
| `unifiedStorage` | SQL-based k8s storage |
|
||||
| `externalServiceAuth` | Starts an OAuth2 authentication provider for external services |
|
||||
| `grafanaAPIServerEnsureKubectlAccess` | Start an additional https handler and write kubectl options |
|
||||
| `externalServiceAccounts` | Automatic service account and token setup for plugins |
|
||||
| `panelTitleSearchInV1` | Enable searching for dashboards using panel title in search v1 |
|
||||
| `ssoSettingsApi` | Enables the SSO settings API |
|
||||
|
@ -936,12 +936,11 @@ var (
|
||||
Created: time.Date(2023, time.September, 22, 12, 0, 0, 0, time.UTC),
|
||||
},
|
||||
{
|
||||
Name: "idForwarding",
|
||||
Description: "Generate signed id token for identity that can be forwarded to plugins and external services",
|
||||
Stage: FeatureStageExperimental,
|
||||
Owner: identityAccessTeam,
|
||||
RequiresDevMode: true,
|
||||
Created: time.Date(2023, time.September, 25, 12, 0, 0, 0, time.UTC),
|
||||
Name: "idForwarding",
|
||||
Description: "Generate signed id token for identity that can be forwarded to plugins and external services",
|
||||
Stage: FeatureStageExperimental,
|
||||
Owner: identityAccessTeam,
|
||||
Created: time.Date(2023, time.September, 25, 12, 0, 0, 0, time.UTC),
|
||||
},
|
||||
{
|
||||
Name: "cloudWatchWildCardDimensionValues",
|
||||
|
@ -109,7 +109,7 @@ alertingInsights,GA,@grafana/alerting-squad,2023-09-14,false,false,false,true
|
||||
externalCorePlugins,experimental,@grafana/plugins-platform-backend,2023-09-22,false,false,false,false
|
||||
pluginsAPIMetrics,experimental,@grafana/plugins-platform-backend,2023-09-21,false,false,false,true
|
||||
httpSLOLevels,experimental,@grafana/hosted-grafana-team,2023-09-22,false,false,true,false
|
||||
idForwarding,experimental,@grafana/identity-access-team,2023-09-25,true,false,false,false
|
||||
idForwarding,experimental,@grafana/identity-access-team,2023-09-25,false,false,false,false
|
||||
cloudWatchWildCardDimensionValues,GA,@grafana/aws-datasources,2023-09-27,false,false,false,false
|
||||
externalServiceAccounts,experimental,@grafana/identity-access-team,2023-09-28,true,false,false,false
|
||||
panelMonitoring,experimental,@grafana/dataviz-squad,2023-10-08,false,false,false,true
|
||||
|
|
Loading…
Reference in New Issue
Block a user