-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
K8s: Default Node register period is longer with a short cycle #2662
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 ef5adf7)A test triggered by this PR failed. Here is an AI-generated analysis of the failure:
|
4c7ac27
to
5ad07ec
Compare
Signed-off-by: Viet Nguyen Duc <[email protected]>
5ad07ec
to
ef5adf7
Compare
User description
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, Documentation
Description
Introduced
SE_NODE_REGISTER_PERIOD
andSE_NODE_REGISTER_CYCLE
for node registration control.Updated Helm chart configurations and documentation for new environment variables.
Added default values for
SE_EVENT_BUS_PUBLISH_PORT
andSE_EVENT_BUS_SUBSCRIBE_PORT
.Enhanced environment variable handling in Dockerfile and configuration scripts.
Changes walkthrough 📝
_helpers.tpl
Add node registration variables to pod template
charts/selenium-grid/templates/_helpers.tpl
nodeRegisterPeriod
andnodeRegisterCycle
variables to podtemplate.
Kubernetes.
Dockerfile
Add new environment variables to Dockerfile
NodeBase/Dockerfile
SE_NODE_REGISTER_PERIOD
andSE_NODE_REGISTER_CYCLE
with defaultvalues.
generate_config
Enhance configuration script for event bus
NodeBase/generate_config
SE_EVENT_BUS_HOST
.values.yaml
Add node registration configurations to Helm values
charts/selenium-grid/values.yaml
nodeRegisterPeriod
and
nodeRegisterCycle
.ENV_VARIABLES.md
Update documentation for new environment variables
ENV_VARIABLES.md
SE_NODE_REGISTER_PERIOD
andSE_NODE_REGISTER_CYCLE
.CONFIGURATION.md
Document new node registration configurations
charts/selenium-grid/CONFIGURATION.md
nodeRegisterPeriod
andnodeRegisterCycle
configurations.value.yaml
Update default environment variable values
scripts/generate_list_env_vars/value.yaml
SE_NODE_REGISTER_PERIOD
andSE_NODE_REGISTER_CYCLE
.