diff --git a/docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md b/docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md index ab2e318bc9b..ae3b7c2b0e9 100644 --- a/docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md +++ b/docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md @@ -78,6 +78,7 @@ Some features are enabled by default. You can disable these feature by setting t | `sqlDatasourceDatabaseSelection` | Enables previous SQL data source dataset dropdown behavior | | `dashgpt` | Enable AI powered features in dashboards | | `reportingRetries` | Enables rendering retries for the reporting feature | +| `externalServiceAccounts` | Automatic service account and token setup for plugins | | `formatString` | Enable format string transformer | | `transformationsVariableSupport` | Allows using variables in transformations | | `cloudWatchBatchQueries` | Runs CloudWatch metrics queries as separate batches | diff --git a/pkg/services/featuremgmt/registry.go b/pkg/services/featuremgmt/registry.go index 7930514064e..9166e3596cb 100644 --- a/pkg/services/featuremgmt/registry.go +++ b/pkg/services/featuremgmt/registry.go @@ -903,11 +903,12 @@ var ( Created: time.Date(2023, time.September, 27, 12, 0, 0, 0, time.UTC), }, { - Name: "externalServiceAccounts", - Description: "Automatic service account and token setup for plugins", - Stage: FeatureStagePrivatePreview, - Owner: identityAccessTeam, - Created: time.Date(2023, time.September, 28, 12, 0, 0, 0, time.UTC), + Name: "externalServiceAccounts", + Description: "Automatic service account and token setup for plugins", + HideFromAdminPage: true, + Stage: FeatureStagePublicPreview, + Owner: identityAccessTeam, + Created: time.Date(2023, time.September, 28, 12, 0, 0, 0, time.UTC), }, { Name: "panelMonitoring", diff --git a/pkg/services/featuremgmt/toggles_gen.csv b/pkg/services/featuremgmt/toggles_gen.csv index 5777ab5db8c..cb4d9f9f010 100644 --- a/pkg/services/featuremgmt/toggles_gen.csv +++ b/pkg/services/featuremgmt/toggles_gen.csv @@ -105,7 +105,7 @@ pluginsAPIMetrics,experimental,@grafana/plugins-platform-backend,2023-09-21,fals httpSLOLevels,experimental,@grafana/hosted-grafana-team,2023-09-22,false,true,false idForwarding,experimental,@grafana/identity-access-team,2023-09-25,false,false,false cloudWatchWildCardDimensionValues,GA,@grafana/aws-datasources,2023-09-27,false,false,false -externalServiceAccounts,privatePreview,@grafana/identity-access-team,2023-09-28,false,false,false +externalServiceAccounts,preview,@grafana/identity-access-team,2023-09-28,false,false,false panelMonitoring,experimental,@grafana/dataviz-squad,2023-10-08,false,false,true enableNativeHTTPHistogram,experimental,@grafana/hosted-grafana-team,2023-10-03,false,false,false formatString,preview,@grafana/grafana-bi-squad,2023-10-13,false,false,true