-
-
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.
Feature run selenium tests grid on kubernetes via helm chart (#2027)
* feat(k8stests): added kubernetes tests cases * docs(keda): updated readme to keda version 2.12 * chore(optimize): matrix strategy in workflow * chore(docker): allow time to docker pull images * fix(dry-principle): Reusing existing test.py
- Loading branch information
1 parent
bbef734
commit e56a1fc
Showing
8 changed files
with
133 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# This Config is required for KIND cluster to enable ingress. Documented here https://kind.sigs.k8s.io/docs/user/ingress | ||
kind: Cluster | ||
apiVersion: kind.x-k8s.io/v1alpha4 | ||
nodes: | ||
- role: control-plane | ||
kubeadmConfigPatches: | ||
- | | ||
kind: InitConfiguration | ||
nodeRegistration: | ||
kubeletExtraArgs: | ||
node-labels: "ingress-ready=true" | ||
extraPortMappings: | ||
- containerPort: 80 | ||
hostPort: 80 | ||
protocol: TCP | ||
- containerPort: 443 | ||
hostPort: 443 | ||
protocol: TCP |
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,13 @@ | ||
# This is used in Helm chart testing. This disables the basic auth on seleneium grid | ||
# Basic auth settings for Selenium Grid | ||
basicAuth: | ||
# Enable or disable basic auth | ||
enabled: false | ||
# Configuration for edge nodes | ||
edgeNode: | ||
# Enable edge nodes | ||
enabled: false | ||
# Configuration for firefox nodes | ||
firefoxNode: | ||
# Enable firefox nodes | ||
enabled: false |
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,13 @@ | ||
# This is used in Helm chart testing. This disables the basic auth on seleneium grid | ||
# Basic auth settings for Selenium Grid | ||
basicAuth: | ||
# Enable or disable basic auth | ||
enabled: false | ||
# Configuration for chrome nodes | ||
chromeNode: | ||
# Enable chrome nodes | ||
enabled: false | ||
# Configuration for firefox nodes | ||
firefoxNode: | ||
# Enable firefox nodes | ||
enabled: false |
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,13 @@ | ||
# This is used in Helm chart testing. This disables the basic auth on seleneium grid | ||
# Basic auth settings for Selenium Grid | ||
basicAuth: | ||
# Enable or disable basic auth | ||
enabled: false | ||
# Configuration for chrome nodes | ||
chromeNode: | ||
# Enable chrome nodes | ||
enabled: false | ||
# Configuration for edge nodes | ||
edgeNode: | ||
# Enable edge nodes | ||
enabled: false |