-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test(chart): Parallel tests execution against autoscaling in Kubernet…
…es (#2046) * test(chart): Parallel tests execution against autoscaling in Kubernetes Signed-off-by: Viet Nguyen Duc <[email protected]> * Correct name of ENV var, start with SE_ only Signed-off-by: Viet Nguyen Duc <[email protected]> --------- Signed-off-by: Viet Nguyen Duc <[email protected]>
- Loading branch information
Showing
7 changed files
with
81 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
isolateComponents: false | ||
autoscaling: | ||
strategy: default | ||
scaledOptions: | ||
minReplicaCount: 0 | ||
maxReplicaCount: 5 | ||
chromeNode: | ||
nameOverride: my-chrome-name | ||
extraEnvironmentVariables: | ||
- name: SE_OPTS | ||
value: "--enable-managed-downloads true" | ||
# Configuration for edge nodes | ||
edgeNode: | ||
nameOverride: my-edge-name | ||
extraEnvironmentVariables: | ||
- name: SE_OPTS | ||
value: "--enable-managed-downloads true" | ||
# Configuration for firefox nodes | ||
firefoxNode: | ||
nameOverride: my-firefox-name | ||
extraEnvironmentVariables: | ||
- name: SE_OPTS | ||
value: "--enable-managed-downloads true" | ||
|
||
ingress: | ||
paths: | ||
- path: /selenium(/|$)(.*) | ||
pathType: ImplementationSpecific | ||
backend: | ||
service: | ||
name: '{{ template "seleniumGrid.hub.fullname" $ }}' | ||
port: | ||
number: 4444 | ||
- path: /(/?)(session/.*/se/vnc) | ||
pathType: ImplementationSpecific | ||
backend: | ||
service: | ||
name: '{{ template "seleniumGrid.hub.fullname" $ }}' | ||
port: | ||
number: 4444 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters