Chore: Set authnz squad as owner of our feature toggles (#64373)

FeatureToggles: Set authnz squad as owner of our feature toggles
This commit is contained in:
Karl Persson 2023-03-08 09:49:02 +01:00 committed by GitHub
parent 43095d84e4
commit ee608c2582
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 3 deletions

View File

@ -12,4 +12,5 @@ const (
grafanaUserEssentialsSquad codeowner = "@grafana/user-essentials" grafanaUserEssentialsSquad codeowner = "@grafana/user-essentials"
grafanaBackendPlatformSquad codeowner = "@grafana/backend-platform" grafanaBackendPlatformSquad codeowner = "@grafana/backend-platform"
grafanaPluginsPlatformSquad codeowner = "@grafana/plugins-platform-backend" grafanaPluginsPlatformSquad codeowner = "@grafana/plugins-platform-backend"
grafanaAuthnzSquad codeowner = "@grafana/grafana-authnz-team"
) )

View File

@ -301,6 +301,7 @@ var (
Name: "accessControlOnCall", Name: "accessControlOnCall",
Description: "Access control primitives for OnCall", Description: "Access control primitives for OnCall",
State: FeatureStateBeta, State: FeatureStateBeta,
Owner: grafanaAuthnzSquad,
}, },
{ {
Name: "nestedFolders", Name: "nestedFolders",
@ -313,6 +314,7 @@ var (
Name: "accessTokenExpirationCheck", Name: "accessTokenExpirationCheck",
Description: "Enable OAuth access_token expiration check and token refresh using the refresh_token", Description: "Enable OAuth access_token expiration check and token refresh using the refresh_token",
State: FeatureStateStable, State: FeatureStateStable,
Owner: grafanaAuthnzSquad,
}, },
{ {
Name: "elasticsearchBackendMigration", Name: "elasticsearchBackendMigration",
@ -333,6 +335,7 @@ var (
Name: "authnService", Name: "authnService",
Description: "Use new auth service to perform authentication", Description: "Use new auth service to perform authentication",
State: FeatureStateAlpha, State: FeatureStateAlpha,
Owner: grafanaAuthnzSquad,
}, },
{ {
Name: "disablePrometheusExemplarSampling", Name: "disablePrometheusExemplarSampling",

View File

@ -65,12 +65,9 @@ func TestFeatureToggleFiles(t *testing.T) {
"athenaAsyncQueryDataSupport": true, "athenaAsyncQueryDataSupport": true,
"newPanelChromeUI": true, "newPanelChromeUI": true,
"showDashboardValidationWarnings": true, "showDashboardValidationWarnings": true,
"accessControlOnCall": true,
"accessTokenExpirationCheck": true,
"elasticsearchBackendMigration": true, "elasticsearchBackendMigration": true,
"datasourceOnboarding": true, "datasourceOnboarding": true,
"secureSocksDatasourceProxy": true, "secureSocksDatasourceProxy": true,
"authnService": true,
"disablePrometheusExemplarSampling": true, "disablePrometheusExemplarSampling": true,
"alertingBacktesting": true, "alertingBacktesting": true,
"alertingNoNormalState": true, "alertingNoNormalState": true,