FeatureToggles: Removed deprecated code (#111750)

This commit is contained in:
Tania
2025-09-29 20:05:44 +03:00
committed by GitHub
parent 073338ec29
commit c952de773d
27 changed files with 13 additions and 1012 deletions
@@ -0,0 +1,126 @@
package feature_toggle_api
import (
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
common "github.com/grafana/grafana/pkg/apimachinery/apis/common/v0alpha1"
)
const (
GROUP = "featuretoggle.grafana.app"
VERSION = "v0alpha1"
APIVERSION = GROUP + "/" + VERSION
)
// Feature represents a feature in development and information about that feature
// It does *not* know the status, only defines properties about the feature itself
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
type Feature struct {
metav1.TypeMeta `json:",inline"`
metav1.ObjectMeta `json:"metadata,omitempty"`
Spec FeatureSpec `json:"spec,omitempty"`
}
type FeatureSpec struct {
// The feature description
Description string `json:"description"`
// Indicates the features level of stability
Stage string `json:"stage"`
// The team who owns this feature development
Owner string `json:"codeowner,omitempty"`
// Enabled by default for version >=
EnabledVersion string `json:"enabledVersion,omitempty"`
// Must be run using in development mode (early dev)
RequiresDevMode bool `json:"requiresDevMode,omitempty"`
// The flab behavior only effects frontend -- it is not used in the backend
FrontendOnly bool `json:"frontend,omitempty"`
// The flag is used at startup, so any change requires a restart
RequiresRestart bool `json:"requiresRestart,omitempty"`
// Allow cloud users to set the values in UI
AllowSelfServe bool `json:"allowSelfServe,omitempty"`
// Do not show the value in the UI
HideFromAdminPage bool `json:"hideFromAdminPage,omitempty"`
// Do not show the value in docs
HideFromDocs bool `json:"hideFromDocs,omitempty"`
// Expression to determine if the flag is enabled by default -- can only be "true" for toggles that are public preview, generally available, or deprecated
Expression string `json:"expression,omitempty"`
}
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
type FeatureList struct {
metav1.TypeMeta `json:",inline"`
metav1.ListMeta `json:"metadata,omitempty"`
Items []Feature `json:"items"`
}
// FeatureToggles define the feature state
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
type FeatureToggles struct {
metav1.TypeMeta `json:",inline"`
metav1.ObjectMeta `json:"metadata,omitempty"`
// The configured toggles. Note this may include unknown fields
Spec map[string]bool `json:"spec"`
}
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
type FeatureTogglesList struct {
metav1.TypeMeta `json:",inline"`
metav1.ListMeta `json:"metadata,omitempty"`
Items []FeatureToggles `json:"items"`
}
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
type ResolvedToggleState struct {
metav1.TypeMeta `json:",inline"`
// The user is allowed to edit feature toggles on this system
AllowEditing bool `json:"allowEditing,omitempty"`
// The system has changes that require still require a restart
RestartRequired bool `json:"restartRequired,omitempty"`
// The currently enabled flags
Enabled map[string]bool `json:"enabled,omitempty"`
// Details on the current status
Toggles []ToggleStatus `json:"toggles,omitempty"`
}
type ToggleStatus struct {
// The feature toggle name
Name string `json:"name"`
// The flag description
Description string `json:"description,omitempty"`
// The feature toggle stage
Stage string `json:"stage"`
// Is the flag enabled
Enabled bool `json:"enabled"`
// Can this flag be updated
Writeable bool `json:"writeable"`
// Where was the value configured
// eg: startup | tenant|org | user | browser
// missing means default
Source *common.ObjectReference `json:"source,omitempty"`
// eg: unknown flag
Warning string `json:"warning,omitempty"`
}