-
Notifications
You must be signed in to change notification settings - Fork 825
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move CustomFasSyncInterval to Beta #2654
Move CustomFasSyncInterval to Beta #2654
Conversation
Pending: #2646 (comment) |
@govargo did you want review on this? Just figured I would ask first since it had "WIP" in the title 😄 Lemme know if this PR is ready for review or not. |
@markmandel Thank you for your comment. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just doing a quick search, also found:
agones/examples/fleetautoscaler.yaml
Lines 50 to 53 in 73cdabc
# [Stage:Alpha] | |
# [FeatureFlag:CustomFasSyncInterval] | |
# The autoscaling sync strategy | |
sync: |
We will need to regen the crd reference (the tests will fail) with the yaml update:
https://github.com/googleforgames/agones/blob/main/build/README.md#make-gen-api-docs
agones/pkg/apis/autoscaling/v1/fleetautoscaler.go
Lines 57 to 62 in 73cdabc
// [Stage:Alpha] | |
// [FeatureFlag:CustomFasSyncInterval] | |
// Sync defines when FleetAutoscalers runs autoscaling | |
// +optional | |
Sync *FleetAutoscalerSync `json:"sync,omitempty"` | |
} |
@@ -29,7 +29,7 @@ The current set of `alpha` and `beta` feature gates are: | |||
|--------------|---------|---------|-------|-------| | |||
| Example Gate (not in use) | `Example` | Disabled | None | 0.13.0 | | |||
| [Player Tracking]({{< ref "/docs/Guides/player-tracking.md" >}}) | `PlayerTracking` | Disabled | `Alpha` | 1.6.0 | | |||
| [Custom resync period for FleetAutoscaler](https://github.com/googleforgames/agones/issues/1955) | `CustomFasSyncInterval` | Disabled | `Alpha` | 1.17.0 | | |||
| [Custom resync period for FleetAutoscaler](https://github.com/googleforgames/agones/issues/1955) | `CustomFasSyncInterval` | Enabled | `Beta` | 1.25.0 | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You'll see to do a feature shortcode the table:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added feature shortcode. If more fixs are needed, please let me know.
@@ -37,7 +37,7 @@ spec: | |||
# maximum fleet size that can be set by this FleetAutoscaler | |||
# required | |||
maxReplicas: 20 | |||
# [Stage:Alpha] | |||
# [Stage:Beta] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You will also need to feature shortcode the example:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added feature shortcode. If more fixs are needed, please let me know.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
New changes are detected. LGTM label has been removed. |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: govargo, markmandel The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
What type of PR is this?
/kind feature
What this PR does / Why we need it:
This PR bump up CustomFasSyncInterval from Alpha to Beta.
Which issue(s) this PR fixes:
Closes #2646
Special notes for your reviewer:
None