-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
K8s: Update strategy as Recreate by default #2755
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
Conversation
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
PR Code Suggestions ✨Explore these optional code suggestions:
|
CI Feedback 🧐(Feedback updated until commit 11cce17)A test triggered by this PR failed. Here is an AI-generated analysis of the failure:
|
944fec0
to
7f3d94e
Compare
Grid components still not support well for RollingUpdate Signed-off-by: Viet Nguyen Duc <nguyenducviet4496@gmail.com>
7f3d94e
to
11cce17
Compare
User description
Grid components still not support well for RollingUpdate
Thanks for contributing to the Docker-Selenium project!
A PR well described will help maintainers to quickly review and merge it
Before submitting your PR, please check our contributing guidelines, applied for this repository.
Avoid large PRs, help reviewers by making them as simple and short as possible.
Description
Motivation and Context
Types of changes
Checklist
PR Type
Enhancement, Configuration changes
Description
Changed default Kubernetes update strategy to
Recreate
for Selenium Grid components.Updated Helm chart configuration and documentation to reflect the new default strategy.
Modified test scripts to include the
SET_UPDATE_STRATEGY
parameter for testing.Adjusted individual node configurations to allow overriding the global update strategy.
Changes walkthrough 📝
chart_test.sh
Add dynamic update strategy parameter in test script
tests/charts/make/chart_test.sh
SET_UPDATE_STRATEGY
parameter in Helm command.helm-chart-test.yml
Update Helm chart test workflow for Recreate strategy
.github/workflows/helm-chart-test.yml
SET_UPDATE_STRATEGY=Recreate
in the Helm chart upgrade testcommand.
CONFIGURATION.md
Update documentation for default Recreate update strategy
charts/selenium-grid/CONFIGURATION.md
Recreate
as the default update strategy.values.yaml
Change default update strategy to Recreate in values.yaml
charts/selenium-grid/values.yaml
RollingUpdate
toRecreate
.strategy.