mirror of https://github.com/grafana/grafana.git
Chore: assign feature flag ownership for GaaS (#64420)
* ownership for GaaS * fix tests * merge
This commit is contained in:
parent
74ed7ead16
commit
3e89ffa2e6
|
|
@ -18,4 +18,5 @@ const (
|
|||
grafanaObservabilityLogsSquad codeowner = "@grafana/observability-logs"
|
||||
grafanaObservabilityTracesAndProfilingSquad codeowner = "@grafana/observability-traces-and-profiling"
|
||||
grafanaAlertingSquad codeowner = "@grafana/alerting-squad"
|
||||
hostedGrafanaTeam codeowner = "@grafana/hosted-grafana-team"
|
||||
)
|
||||
|
|
|
|||
|
|
@ -31,6 +31,7 @@ var (
|
|||
Name: "database_metrics",
|
||||
Description: "Add Prometheus metrics for database tables",
|
||||
State: FeatureStateStable,
|
||||
Owner: hostedGrafanaTeam,
|
||||
},
|
||||
{
|
||||
Name: "dashboardPreviews",
|
||||
|
|
@ -228,11 +229,13 @@ var (
|
|||
Description: "Disable duplicated secret storage in legacy tables",
|
||||
State: FeatureStateAlpha,
|
||||
RequiresRestart: true,
|
||||
Owner: hostedGrafanaTeam,
|
||||
},
|
||||
{
|
||||
Name: "logRequestsInstrumentedAsUnknown",
|
||||
Description: "Logs the path for requests that are instrumented as unknown",
|
||||
State: FeatureStateAlpha,
|
||||
Owner: hostedGrafanaTeam,
|
||||
},
|
||||
{
|
||||
Name: "dataConnectionsConsole",
|
||||
|
|
@ -343,6 +346,7 @@ var (
|
|||
Name: "secureSocksDatasourceProxy",
|
||||
Description: "Enable secure socks tunneling for supported core datasources",
|
||||
State: FeatureStateAlpha,
|
||||
Owner: hostedGrafanaTeam,
|
||||
},
|
||||
{
|
||||
Name: "authnService",
|
||||
|
|
|
|||
|
|
@ -42,19 +42,15 @@ func TestFeatureToggleFiles(t *testing.T) {
|
|||
})
|
||||
|
||||
ownerlessFeatures := map[string]bool{
|
||||
"database_metrics": true,
|
||||
"prometheusAzureOverrideAudience": true,
|
||||
"tracing": true,
|
||||
"cloudWatchDynamicLabels": true,
|
||||
"disableSecretsCompatibility": true,
|
||||
"logRequestsInstrumentedAsUnknown": true,
|
||||
"cloudWatchCrossAccountQuerying": true,
|
||||
"redshiftAsyncQueryDataSupport": true,
|
||||
"athenaAsyncQueryDataSupport": true,
|
||||
"newPanelChromeUI": true,
|
||||
"showDashboardValidationWarnings": true,
|
||||
"datasourceOnboarding": true,
|
||||
"secureSocksDatasourceProxy": true,
|
||||
"individualCookiePreferences": true,
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue