-
Notifications
You must be signed in to change notification settings - Fork 150
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
Add feature flag system to support gradual rollouts #151
Conversation
Introduce a lightweight feature flag implementation to enable safer and more controlled feature releases. This system will allow us to: - Reduce risk by gradually rolling out new features to subsets of users - Quickly disable problematc features without requiring a new release - Manage feature lifecycles more effectively across different environments The implementation uses a simple map-based approach for for efficiently introducing and graduating new features in ACK.
/cc @acornett21 |
@a-hilaly: GitHub didn't allow me to request PR reviews from the following users: acornett21. Note that only aws-controllers-k8s members and repo collaborators can review this PR, and authors cannot review their own PRs. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
Co-authored-by: Chetan Patwal <cPu1@users.noreply.github.com>
/lgtm |
@TiberiuGC: changing LGTM is restricted to collaborators In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: a-hilaly, ack-bot, cPu1, TiberiuGC 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 |
cc @zicongmei |
Issue #, if available: N/A, but related to aws-controllers-k8s/runtime#151 Description of changes: Adds optional support for feature gates in Helm templates. A top-level key of `featureGates` has been added to the default values file template, and the optional command-line argument has been appended to the deployment template. By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
Introduce a lightweight feature flag implementation to enable safer and
more controlled feature releases. This system will allow us to:
The implementation uses a simple map-based approach for for efficiently
introducing and graduating new features in ACK.
Usage example:
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.