features: Add feature flag for grafana cloud rbac roles (#80283)

This commit is contained in:
Karl Persson 2024-01-10 14:19:01 +01:00 committed by GitHub
parent 71b98163e5
commit 5b3cd9f55b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 15 additions and 0 deletions

View File

@ -172,4 +172,5 @@ export interface FeatureToggles {
lokiQueryHints?: boolean;
alertingPreviewUpgrade?: boolean;
enablePluginsTracingByDefault?: boolean;
cloudRBACRoles?: boolean;
}

View File

@ -1306,5 +1306,14 @@ var (
RequiresRestart: true,
Created: time.Date(2024, time.January, 9, 12, 0, 0, 0, time.UTC),
},
{
Name: "cloudRBACRoles",
Description: "Enabled grafana cloud specific RBAC roles",
Stage: FeatureStageExperimental,
Owner: identityAccessTeam,
HideFromDocs: true,
RequiresRestart: true,
Created: time.Date(2024, time.January, 10, 12, 0, 0, 0, time.UTC),
},
}
)

View File

@ -153,3 +153,4 @@ alertStateHistoryAnnotationsFromLoki,experimental,@grafana/alerting-squad,2023-1
lokiQueryHints,GA,@grafana/observability-logs,2023-12-18,false,false,false,true
alertingPreviewUpgrade,experimental,@grafana/alerting-squad,2024-01-03,false,false,true,false
enablePluginsTracingByDefault,experimental,@grafana/plugins-platform-backend,2024-01-09,false,false,true,false
cloudRBACRoles,experimental,@grafana/identity-access-team,2024-01-10,false,false,true,false

1 Name Stage Owner Created requiresDevMode RequiresLicense RequiresRestart FrontendOnly
153 lokiQueryHints GA @grafana/observability-logs 2023-12-18 false false false true
154 alertingPreviewUpgrade experimental @grafana/alerting-squad 2024-01-03 false false true false
155 enablePluginsTracingByDefault experimental @grafana/plugins-platform-backend 2024-01-09 false false true false
156 cloudRBACRoles experimental @grafana/identity-access-team 2024-01-10 false false true false

View File

@ -622,4 +622,8 @@ const (
// FlagEnablePluginsTracingByDefault
// Enable plugin tracing for all external plugins
FlagEnablePluginsTracingByDefault = "enablePluginsTracingByDefault"
// FlagCloudRBACRoles
// Enabled grafana cloud specific RBAC roles
FlagCloudRBACRoles = "cloudRBACRoles"
)