diff --git a/install/helm/agones/defaultfeaturegates.yaml b/install/helm/agones/defaultfeaturegates.yaml index 3b2c456a21..6c1442b41e 100644 --- a/install/helm/agones/defaultfeaturegates.yaml +++ b/install/helm/agones/defaultfeaturegates.yaml @@ -22,8 +22,6 @@ SplitControllerAndExtensions: true PlayerAllocationFilter: false PlayerTracking: false DisableResyncOnSDKServer: false - -# Pre-Alpha features CountsAndLists: false # Example feature diff --git a/pkg/util/runtime/features.go b/pkg/util/runtime/features.go index 7ca446df62..49fa9ee2af 100644 --- a/pkg/util/runtime/features.go +++ b/pkg/util/runtime/features.go @@ -48,9 +48,6 @@ const ( // if the desired number of the underlying GameServerSet drops below the number of Allocated GameServers. FeatureFleetAllocateOverflow = "FleetAllocationOverflow" - //////////////// - // "Pre"-Alpha features - // FeatureCountsAndLists is a feature flag that enables/disables counts and lists feature // (a generic implenetation of the player tracking feature). FeatureCountsAndLists Feature = "CountsAndLists" @@ -101,9 +98,7 @@ var ( FeaturePlayerAllocationFilter: false, FeaturePlayerTracking: false, FeatureDisableResyncOnSDKServer: false, - - // Pre-Alpha features - FeatureCountsAndLists: false, + FeatureCountsAndLists: false, // Example feature FeatureExample: false, diff --git a/site/content/en/docs/Guides/feature-stages.md b/site/content/en/docs/Guides/feature-stages.md index 7a787ec7c6..4ef5283806 100644 --- a/site/content/en/docs/Guides/feature-stages.md +++ b/site/content/en/docs/Guides/feature-stages.md @@ -41,6 +41,7 @@ The current set of `alpha` and `beta` feature gates: |-----------------------------------------------------------------------------------------------------------------------|--------------------------------|----------|---------|--------| | [Allocated GameServers are notified on relevant Fleet Updates][fleet-updates] | `FleetAllocationOverflow` | Enabled | `Beta` | 1.37.0 | | [Split `agones-controller` ](https://github.com/googleforgames/agones/issues/2797) | `SplitControllerAndExtensions` | Enabled | `Beta` | 1.32.0 | +| [CountsAndLists](https://github.com/googleforgames/agones/issues/2716) | `CountsAndLists` | Disabled | `Alpha` | 1.37.0 | | [GameServer player capacity filtering on GameServerAllocations](https://github.com/googleforgames/agones/issues/1239) | `PlayerAllocationFilter` | Disabled | `Alpha` | 1.14.0 | | [Player Tracking]({{< ref "/docs/Guides/player-tracking.md" >}}) | `PlayerTracking` | Disabled | `Alpha` | 1.6.0 | | [DisableResyncOnSDKServer](https://github.com/googleforgames/agones/issues/3377) | `DisableResyncOnSDKServer` | Disabled | `Alpha` | 1.37.0 |