You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -109,6 +111,8 @@ A Helm chart for creating a Selenium Grid Server in Kubernetes
109
111
| ingress.tls | list |`[]`| TLS backend configuration for ingress resource |
110
112
| busConfigMap.nameOverride | string |`nil`| Override the name of the bus configMap |
111
113
| busConfigMap.annotations | object |`{}`| Custom annotations for configmap |
114
+
| sessionMapConfigMap.nameOverride | string |`nil`| Override the name of the session map configMap |
115
+
| sessionMapConfigMap.annotations | object |`{}`| Custom annotations for configmap |
112
116
| distributorConfigMap.nameOverride | string |`nil`| Override the name of the distributor configMap |
113
117
| distributorConfigMap.defaultMode | int |`493`| Default mode for ConfigMap is mounted as file |
114
118
| distributorConfigMap.extraScriptsImportFrom | string |`"configs/distributor/**"`| Directory where the extra scripts are imported to ConfigMap by default (if given a relative path, it should be in chart's directory) |
@@ -244,6 +248,10 @@ A Helm chart for creating a Selenium Grid Server in Kubernetes
244
248
| components.sessionMap.tolerations | list |`[]`| Tolerations for Session Map pods |
| components.sessionMap.externalDatastore.backend | string |`"postgresql"`| Backend for external datastore (supported: postgresql, redis). Details for each backend are described below config key |
| postgresql.enabled | bool |`false`| Enable to install PostgreSQL along with Grid |
602
+
| postgresql.auth | object |`{"database":"selenium_sessions","password":"seluser","username":"seluser"}`| Authentication should be aligned with config in session map |
603
+
| postgresql.primary.initdb.scripts | object |`{"init.sql":"CREATE TABLE IF NOT EXISTS sessions_map(\n session_ids varchar(256),\n session_caps text,\n session_uri varchar(256),\n session_stereotype text,\n session_start varchar(256)\n);\n"}`| Initdb scripts for PostgreSQL to create sessions_map table |
604
+
| redis.enabled | bool |`false`| Enable to install Redis along with Grid |
0 commit comments