IDForwarding: Remove dev mode restriction for feature toggle (#79358)

Remove dev mode restriction for id forwarding feature toggle
This commit is contained in:
Karl Persson 2023-12-12 09:26:45 +01:00 committed by GitHub
parent 19ad788333
commit 69784efa35
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 15 additions and 16 deletions

View File

@ -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 |

View File

@ -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",

View File

@ -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

1 Name Stage Owner Created requiresDevMode RequiresLicense RequiresRestart FrontendOnly
109 externalCorePlugins experimental @grafana/plugins-platform-backend 2023-09-22 false false false false
110 pluginsAPIMetrics experimental @grafana/plugins-platform-backend 2023-09-21 false false false true
111 httpSLOLevels experimental @grafana/hosted-grafana-team 2023-09-22 false false true false
112 idForwarding experimental @grafana/identity-access-team 2023-09-25 true false false false false
113 cloudWatchWildCardDimensionValues GA @grafana/aws-datasources 2023-09-27 false false false false
114 externalServiceAccounts experimental @grafana/identity-access-team 2023-09-28 true false false false
115 panelMonitoring experimental @grafana/dataviz-squad 2023-10-08 false false false true