Skip to content

Commit 69784ef

Browse files
authored
IDForwarding: Remove dev mode restriction for feature toggle (#79358)
Remove dev mode restriction for id forwarding feature toggle
1 parent 19ad788 commit 69784ef

File tree

3 files changed

+15
-16
lines changed

3 files changed

+15
-16
lines changed

docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ Experimental features might be changed or removed without prior notice.
140140
| `externalCorePlugins` | Allow core plugins to be loaded as external |
141141
| `pluginsAPIMetrics` | Sends metrics of public grafana packages usage by plugins |
142142
| `httpSLOLevels` | Adds SLO level to http request metrics |
143+
| `idForwarding` | Generate signed id token for identity that can be forwarded to plugins and external services |
143144
| `panelMonitoring` | Enables panel monitoring through logs and measurements |
144145
| `enableNativeHTTPHistogram` | Enables native HTTP Histograms |
145146
| `formatString` | Enable format string transformer |
@@ -172,12 +173,11 @@ Experimental features might be changed or removed without prior notice.
172173

173174
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.
174175

175-
| Feature toggle name | Description |
176-
| ------------------------------------- | -------------------------------------------------------------------------------------------- |
177-
| `unifiedStorage` | SQL-based k8s storage |
178-
| `externalServiceAuth` | Starts an OAuth2 authentication provider for external services |
179-
| `grafanaAPIServerEnsureKubectlAccess` | Start an additional https handler and write kubectl options |
180-
| `idForwarding` | Generate signed id token for identity that can be forwarded to plugins and external services |
181-
| `externalServiceAccounts` | Automatic service account and token setup for plugins |
182-
| `panelTitleSearchInV1` | Enable searching for dashboards using panel title in search v1 |
183-
| `ssoSettingsApi` | Enables the SSO settings API |
176+
| Feature toggle name | Description |
177+
| ------------------------------------- | -------------------------------------------------------------- |
178+
| `unifiedStorage` | SQL-based k8s storage |
179+
| `externalServiceAuth` | Starts an OAuth2 authentication provider for external services |
180+
| `grafanaAPIServerEnsureKubectlAccess` | Start an additional https handler and write kubectl options |
181+
| `externalServiceAccounts` | Automatic service account and token setup for plugins |
182+
| `panelTitleSearchInV1` | Enable searching for dashboards using panel title in search v1 |
183+
| `ssoSettingsApi` | Enables the SSO settings API |

pkg/services/featuremgmt/registry.go

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -936,12 +936,11 @@ var (
936936
Created: time.Date(2023, time.September, 22, 12, 0, 0, 0, time.UTC),
937937
},
938938
{
939-
Name: "idForwarding",
940-
Description: "Generate signed id token for identity that can be forwarded to plugins and external services",
941-
Stage: FeatureStageExperimental,
942-
Owner: identityAccessTeam,
943-
RequiresDevMode: true,
944-
Created: time.Date(2023, time.September, 25, 12, 0, 0, 0, time.UTC),
939+
Name: "idForwarding",
940+
Description: "Generate signed id token for identity that can be forwarded to plugins and external services",
941+
Stage: FeatureStageExperimental,
942+
Owner: identityAccessTeam,
943+
Created: time.Date(2023, time.September, 25, 12, 0, 0, 0, time.UTC),
945944
},
946945
{
947946
Name: "cloudWatchWildCardDimensionValues",

pkg/services/featuremgmt/toggles_gen.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ alertingInsights,GA,@grafana/alerting-squad,2023-09-14,false,false,false,true
109109
externalCorePlugins,experimental,@grafana/plugins-platform-backend,2023-09-22,false,false,false,false
110110
pluginsAPIMetrics,experimental,@grafana/plugins-platform-backend,2023-09-21,false,false,false,true
111111
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
112+
idForwarding,experimental,@grafana/identity-access-team,2023-09-25,false,false,false,false
113113
cloudWatchWildCardDimensionValues,GA,@grafana/aws-datasources,2023-09-27,false,false,false,false
114114
externalServiceAccounts,experimental,@grafana/identity-access-team,2023-09-28,true,false,false,false
115115
panelMonitoring,experimental,@grafana/dataviz-squad,2023-10-08,false,false,false,true

0 commit comments

Comments
 (0)