Skip to content

Commit

Permalink
Adds BundleDeploymentHealth feature gate
Browse files Browse the repository at this point in the history
Signed-off-by: Joaquim Moreno Prusi <joaquim@redhat.com>
  • Loading branch information
jmprusi authored and ncdc committed Oct 2, 2023
1 parent 29a1957 commit ee2aa19
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions pkg/features/features.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,17 @@ import (
)

const (
// Add new feature gates constants (strings)
// Ex: SomeFeature featuregate.Feature = "SomeFeature"
// Add new feature gates constants (strings)
// Ex: SomeFeature featuregate.Feature = "SomeFeature"

BundleDeploymentHealth featuregate.Feature = "BundleDeploymentHealth"
)

var rukpakFeatureGates = map[featuregate.Feature]featuregate.FeatureSpec{
// Add new feature gate definitions
// Ex: SomeFeature: {...}

BundleDeploymentHealth: {Default: false, PreRelease: featuregate.Alpha},
}

var RukpakFeatureGate featuregate.MutableFeatureGate = featuregate.NewFeatureGate()
Expand Down

0 comments on commit ee2aa19

Please sign in to comment.