chart(breaking change): update config key to enable ingress #2349
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
chart(breaking change): update config key to enable ingress
Motivation and Context
Config keys are changed as below
ingress.enabled
changes toingress.enableWithExistingController
: Enable or disable ingress resource (without installing Ingress NGINX Controller subchart)Now
ingress.enabled
to used to enable ingress resource. Implies installing Ingress NGINX ControllerTypes of changes
Checklist
PR Type
Enhancement, Tests, Documentation
Description
--credential yes
flag todocker run
command in chart setup script.RENDER_HELM_TEMPLATE_ONLY
variable for conditional execution in chart test script.Changes walkthrough 📝
14 files
generate_release_notes.sh
Enhance release notes with Helm chart version and Docker Hub link
generate_release_notes.sh
chart_setup_env.sh
Add credential flag to multiarch/qemu-user-static docker run command
tests/charts/make/chart_setup_env.sh
--credential yes
flag todocker run
command formultiarch/qemu-user-static.
chart_test.sh
Add conditional execution for Helm template rendering
tests/charts/make/chart_test.sh
RENDER_HELM_TEMPLATE_ONLY
variable for conditionalexecution.
RENDER_HELM_TEMPLATE_ONLY
._helpers.tpl
Add helper functions for ingress and monitoring enablement
charts/selenium-grid/templates/_helpers.tpl
checks.
deploy.yml
Add option to skip image build and push in deploy workflow
.github/workflows/deploy.yml
skip-build-push-image
input to skip image build and push steps.docker-test.yml
Add disk space cleanup step in docker-test workflow
.github/workflows/docker-test.yml
helm-chart-test.yml
Add disk space cleanup step in helm-chart-test workflow
.github/workflows/helm-chart-test.yml
rerun-failed.yml
Add write-all permissions to rerun-failed workflow
.github/workflows/rerun-failed.yml
permissions: write-all
to the workflow.Makefile
Add chart_render_template target and update chart test targets
Makefile
chart_render_template
target for rendering Helm templates.TEMPLATE_OUTPUT_FILENAME
.Chart.yaml
Update dependency conditions with new enablement flags
charts/selenium-grid/Chart.yaml
NOTES.txt
Update ingress enablement check in NOTES.txt
charts/selenium-grid/templates/NOTES.txt
ingress.yaml
Update ingress enablement check in ingress.yaml
charts/selenium-grid/templates/ingress.yaml
values.yaml
Add new flags for ingress and monitoring configurations
charts/selenium-grid/values.yaml
enableWithExistingController
flag for ingress.enabledWithExistingAgent
flag for monitoring.base-auth-ingress-values.yaml
Add enabled flag for ingress in base-auth-ingress-values.yaml
tests/charts/ci/base-auth-ingress-values.yaml
enabled
flag for ingress.1 files
README.md
Update README with new ingress and tracing configurations
charts/selenium-grid/README.md
configurations.