Skip to content

Commit 8957138

Browse files
committed
Release chart 0.28.4
Signed-off-by: Viet Nguyen Duc <[email protected]>
1 parent ea2ebb0 commit 8957138

File tree

3 files changed

+18
-14
lines changed

3 files changed

+18
-14
lines changed

charts/selenium-grid/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: selenium-grid
33
description: A Helm chart for creating a Selenium Grid Server in Kubernetes
44
type: application
5-
version: 0.28.3
5+
version: 0.28.4
66
appVersion: 4.18.1-20240224
77
icon: https://github.com/SeleniumHQ/docker-selenium/raw/trunk/logo.png
88
dependencies:

charts/selenium-grid/README.md

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -288,18 +288,20 @@ ingress-nginx:
288288
### Configuration global
289289
For now, global configuration supported is:
290290
291-
| Parameter | Default | Description |
292-
|-----------------------------------------------|-----------------------|----------------------------------------|
293-
| `global.K8S_PUBLIC_IP` | `""` | Public IP of the host running K8s |
294-
| `global.seleniumGrid.imageRegistry` | `selenium` | Distribution registry to pull images |
295-
| `global.seleniumGrid.imageTag` | `4.18.1-20240224` | Image tag for all selenium components |
296-
| `global.seleniumGrid.nodesImageTag` | `4.18.1-20240224` | Image tag for browser's nodes |
297-
| `global.seleniumGrid.videoImageTag` | `ffmpeg-6.1-20240224` | Image tag for browser's video recorder |
298-
| `global.seleniumGrid.imagePullSecret` | `""` | Pull secret to be used for all images |
299-
| `global.seleniumGrid.imagePullSecret` | `""` | Pull secret to be used for all images |
300-
| `global.seleniumGrid.affinity` | `{}` | Affinity assigned globally |
301-
| `global.seleniumGrid.logLevel` | `INFO` | Set log level for all components |
302-
| `global.seleniumGrid.defaultNodeStartupProbe` | `exec` | Default startup probe method in Nodes |
291+
| Parameter | Default | Description |
292+
|-------------------------------------------------|-----------------------|-------------------------------------------|
293+
| `global.K8S_PUBLIC_IP` | `""` | Public IP of the host running K8s |
294+
| `global.seleniumGrid.imageRegistry` | `selenium` | Distribution registry to pull images |
295+
| `global.seleniumGrid.imageTag` | `4.18.1-20240224` | Image tag for all selenium components |
296+
| `global.seleniumGrid.nodesImageTag` | `4.18.1-20240224` | Image tag for browser's nodes |
297+
| `global.seleniumGrid.videoImageTag` | `ffmpeg-6.1-20240224` | Image tag for browser's video recorder |
298+
| `global.seleniumGrid.imagePullSecret` | `""` | Pull secret to be used for all images |
299+
| `global.seleniumGrid.imagePullSecret` | `""` | Pull secret to be used for all images |
300+
| `global.seleniumGrid.affinity` | `{}` | Affinity assigned globally |
301+
| `global.seleniumGrid.logLevel` | `INFO` | Set log level for all components |
302+
| `global.seleniumGrid.defaultNodeStartupProbe` | `exec` | Default startup probe method in Nodes |
303+
| `global.seleniumGrid.defaultNodeLivenessProbe` | `exec` | Default liveness probe method in Nodes |
304+
| `global.seleniumGrid.stdoutProbeLog` | `true` | Enable probe logs output in kubectl logs |
303305

304306
#### Configuration `global.K8S_PUBLIC_IP`
305307

@@ -324,7 +326,7 @@ hub:
324326

325327
SE_NODE_GRID_URL: 'http://admin:[email protected]/selenium'
326328
```
327-
Besides that, from the outside of the cluster, you can access via NodePort http://10.10.10.10:30444/selenium
329+
Besides that, from the outside of the cluster, you can access via NodePort `http://10.10.10.10:30444/selenium`
328330
329331
### Configuration of Nodes
330332

charts/selenium-grid/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ global:
1919
# Set default startup probe for all nodes (supplied values: httpGet, exec). If not set, the default is httpGet
2020
# startup probe method `exec.command` is using a script is mounted from `nodeConfigMap.extraScripts.nodeProbe.sh`
2121
defaultNodeStartupProbe: exec
22+
# liveness probe method `exec.command` is using a script is mounted from `nodeConfigMap.extraScripts.nodeProbe.sh`
2223
defaultNodeLivenessProbe: exec
24+
# probe logs output can be retrieved using `kubectl logs`
2325
stdoutProbeLog: true
2426

2527
tls:

0 commit comments

Comments
 (0)