Skip to content

Commit 7abd5bb

Browse files
feat: Add dev feature flag for Processor allocator (#4221)
1 parent da1e928 commit 7abd5bb

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

install/helm/agones/defaultfeaturegates.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ ScheduledAutoscaler: false
3636
SidecarContainers: false
3737

3838
# Dev features
39+
ProcessorAllocator: false
3940

4041
# Example feature
4142
Example: false

pkg/util/runtime/features.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,9 @@ const (
7979
////////////////
8080
// Dev features
8181

82+
// FeatureProcessorAllocator is a feature flag to enable/disable the processor allocator feature.
83+
FeatureProcessorAllocator = "ProcessorAllocator"
84+
8285
////////////////
8386
// Example feature
8487

@@ -160,6 +163,7 @@ var (
160163
FeatureSidecarContainers: false,
161164

162165
// Dev features
166+
FeatureProcessorAllocator: false,
163167

164168
// Example feature
165169
FeatureExample: false,

0 commit comments

Comments
 (0)