-
-
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
[grid][chart] Allows users to turn off Deployment creation for Nodes #1709
[grid][chart] Allows users to turn off Deployment creation for Nodes #1709
Conversation
This change introduces a new value called `deploymentEnabled` for each of the node browsers, if the value is set to `true` Deployments will be created for each of the respective nodes however if `false` no Deployments will be created. This will allow users to turn of creation of the default deployments and to use other resource types instead such as jobs. Fixes SeleniumHQ#1708
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.
Can you also please update the changelog and the Chart.yaml
file?
@diemol Can you please take a look at the |
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.
That looks, perfect, thank you!
Sorry for coming in so late, but I don't understand this feature. Why not just use I also see that this new variable is used with the same logic as {{- if and .Values.chromeNode.enabled .Values.chromeNode.deploymentEnabled }} Both variables are dependent on each other now? @mhnaeem can you please explain the added value here? |
For our use case we needed to use Keda Plus I am hoping that the autoscaling PR #1714 goes out soon which will use I did not think much of this change because |
…eleniumHQ#1709) * [grid][chart] Allows users to turn of Deployment creation for Nodes This change introduces a new value called `deploymentEnabled` for each of the node browsers, if the value is set to `true` Deployments will be created for each of the respective nodes however if `false` no Deployments will be created. This will allow users to turn of creation of the default deployments and to use other resource types instead such as jobs. Fixes SeleniumHQ#1708 * Update the Changelog and bump chart version
Description
This change introduces a new value called
deploymentEnabled
for each of the node browsers, if the value is set totrue
Deployments will be created for each of the respective nodes however iffalse
no Deployments will be created.This will allow users to turn off creation of the default deployments and to use other resource types instead such as jobs.
Motivation and Context
Fixes #1708
Types of changes
Checklist