mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 10:03:33 -06:00
features: Add feature flag for grafana cloud rbac roles (#80283)
This commit is contained in:
parent
71b98163e5
commit
5b3cd9f55b
@ -172,4 +172,5 @@ export interface FeatureToggles {
|
||||
lokiQueryHints?: boolean;
|
||||
alertingPreviewUpgrade?: boolean;
|
||||
enablePluginsTracingByDefault?: boolean;
|
||||
cloudRBACRoles?: boolean;
|
||||
}
|
||||
|
@ -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),
|
||||
},
|
||||
}
|
||||
)
|
||||
|
@ -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
|
||||
|
|
@ -622,4 +622,8 @@ const (
|
||||
// FlagEnablePluginsTracingByDefault
|
||||
// Enable plugin tracing for all external plugins
|
||||
FlagEnablePluginsTracingByDefault = "enablePluginsTracingByDefault"
|
||||
|
||||
// FlagCloudRBACRoles
|
||||
// Enabled grafana cloud specific RBAC roles
|
||||
FlagCloudRBACRoles = "cloudRBACRoles"
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user