Plugins: Enable managedPluginsInstall by default (#84721)

Plugins: enable managedPluginsInstall by default
pull/84751/head
Hugo Kiyodi Oshiro 1 year ago committed by GitHub
parent 107dd15e12
commit b1c4ebe6e8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md
  2. 3
      pkg/services/featuremgmt/registry.go
  3. 2
      pkg/services/featuremgmt/toggles_gen.csv
  4. 9
      pkg/services/featuremgmt/toggles_gen.json

@ -51,6 +51,7 @@ Some features are enabled by default. You can disable these feature by setting t
| `panelMonitoring` | Enables panel monitoring through logs and measurements | Yes |
| `recoveryThreshold` | Enables feature recovery threshold (aka hysteresis) for threshold server-side expression | Yes |
| `lokiStructuredMetadata` | Enables the loki data source to request structured metadata from the Loki server | Yes |
| `managedPluginsInstall` | Install managed plugins directly from plugins catalog | Yes |
| `logRowsPopoverMenu` | Enable filtering menu displayed when text of a log line is selected | Yes |
| `lokiQueryHints` | Enables query hints for Loki | Yes |
| `alertingQueryOptimization` | Optimizes eligible queries in order to reduce load on datasources | |
@ -88,7 +89,6 @@ Some features are enabled by default. You can disable these feature by setting t
| `cloudWatchBatchQueries` | Runs CloudWatch metrics queries as separate batches |
| `teamHttpHeaders` | Enables Team LBAC for datasources to apply team headers to the client requests |
| `awsDatasourcesNewFormStyling` | Applies new form styling for configuration and query editors in AWS plugins |
| `managedPluginsInstall` | Install managed plugins directly from plugins catalog |
| `addFieldFromCalculationStatFunctions` | Add cumulative and window functions to the add field from calculation transformation |
| `pdfTables` | Enables generating table data as PDF in reporting |
| `ssoSettingsApi` | Enables the SSO settings API and the OAuth configuration UIs in Grafana |

@ -859,9 +859,10 @@ var (
{
Name: "managedPluginsInstall",
Description: "Install managed plugins directly from plugins catalog",
Stage: FeatureStagePublicPreview,
Stage: FeatureStageGeneralAvailability,
RequiresDevMode: false,
Owner: grafanaPluginsPlatformSquad,
Expression: "true", // enabled by default
},
{
Name: "prometheusPromQAIL",

@ -114,7 +114,7 @@ teamHttpHeaders,preview,@grafana/identity-access-team,false,false,false
awsDatasourcesNewFormStyling,preview,@grafana/aws-datasources,false,false,true
cachingOptimizeSerializationMemoryUsage,experimental,@grafana/grafana-operator-experience-squad,false,false,false
panelTitleSearchInV1,experimental,@grafana/backend-platform,true,false,false
managedPluginsInstall,preview,@grafana/plugins-platform-backend,false,false,false
managedPluginsInstall,GA,@grafana/plugins-platform-backend,false,false,false
prometheusPromQAIL,experimental,@grafana/observability-metrics,false,false,true
addFieldFromCalculationStatFunctions,preview,@grafana/dataviz-squad,false,false,true
alertmanagerRemoteSecondary,experimental,@grafana/alerting-squad,false,false,false

1 Name Stage Owner requiresDevMode RequiresRestart FrontendOnly
114 awsDatasourcesNewFormStyling preview @grafana/aws-datasources false false true
115 cachingOptimizeSerializationMemoryUsage experimental @grafana/grafana-operator-experience-squad false false false
116 panelTitleSearchInV1 experimental @grafana/backend-platform true false false
117 managedPluginsInstall preview GA @grafana/plugins-platform-backend false false false
118 prometheusPromQAIL experimental @grafana/observability-metrics false false true
119 addFieldFromCalculationStatFunctions preview @grafana/dataviz-squad false false true
120 alertmanagerRemoteSecondary experimental @grafana/alerting-squad false false false

@ -1911,12 +1911,15 @@
{
"metadata": {
"name": "managedPluginsInstall",
"resourceVersion": "1709648236447",
"creationTimestamp": "2024-03-05T14:17:16Z"
"resourceVersion": "1710846414600",
"creationTimestamp": "2024-03-05T14:17:16Z",
"annotations": {
"grafana.app/updatedTimestamp": "2024-03-19 11:06:54.600063936 +0000 UTC"
}
},
"spec": {
"description": "Install managed plugins directly from plugins catalog",
"stage": "preview",
"stage": "GA",
"codeowner": "@grafana/plugins-platform-backend"
}
},

Loading…
Cancel
Save