Skip to content
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

update(chart): objects name convention with prefix is chart RELEASENAME #2134

Merged
merged 1 commit into from
Feb 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 5 additions & 11 deletions charts/selenium-grid/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -628,12 +628,12 @@ This table contains the configuration parameters of the chart and their default
| `basicAuth.username` | `admin` | Username of basic auth for Selenium Grid |
| `basicAuth.password` | `admin` | Password of basic auth for Selenium Grid |
| `isolateComponents` | `false` | Deploy Router, Distributor, EventBus, SessionMap and Nodes separately |
| `serviceAccount.create` | `true` | Enable or disable creation of service account (if `false`, `serviceAccount.name` MUST be specified |
| `serviceAccount.name` | `""` | Name of the service account to be made or existing service account to use for all deployments and jobs |
| `serviceAccount.create` | `true` | Enable or disable creation of service account (if `false`, `serviceAccount.nameOverride` MUST be specified |
| `serviceAccount.nameOverride` | `""` | Name of another service account to be made or existing service account to use for all deployments and jobs |
| `serviceAccount.annotations` | `{}` | Custom annotations for service account |
| `busConfigMap.name` | `selenium-event-bus-config` | Name of the configmap that contains SE_EVENT_BUS_HOST, SE_EVENT_BUS_PUBLISH_PORT and SE_EVENT_BUS_SUBSCRIBE_PORT variables |
| `busConfigMap.nameOverride` | `` | Override another configmap that contains SE_EVENT_BUS_HOST, SE_EVENT_BUS_PUBLISH_PORT and SE_EVENT_BUS_SUBSCRIBE_PORT vars |
| `busConfigMap.annotations` | `{}` | Custom annotations for configmap |
| `nodeConfigMap.name` | `selenium-node-config` | Name of the configmap that contains common environment variables for browser nodes |
| `nodeConfigMap.nameOverride` | `` | Name of the configmap that contains common environment variables for browser nodes |
| `nodeConfigMap.annotations` | `{}` | Custom annotations for configmap |
| `ingress.enabled` | `true` | Enable or disable ingress resource |
| `ingress.className` | `""` | Name of ingress class to select which controller will implement ingress resource |
Expand Down Expand Up @@ -794,7 +794,7 @@ This table contains the configuration parameters of the chart and their default
| `videoRecorder.imagePullPolicy` | `IfNotPresent` | Image pull policy (see https://kubernetes.io/docs/concepts/containers/images/#updating-images) |
| `videoRecorder.uploader.enabled` | `false` | Enable the uploader for videos |
| `videoRecorder.uploader.destinationPrefix` | `` | Destination for uploading video file. It is following `rclone` config |
| `videoRecorder.uploader.name` | `rclone` | Name of the uploader to use. Supported default `rclone` |
| `videoRecorder.uploader.name` | `` | Name of the pluggable uploader container to add and configure |
| `videoRecorder.uploader.configFileName` | `config.conf` | Config file name for `rclone` in uploader container |
| `videoRecorder.uploader.entryPointFileName` | `entry_point.sh` | Script file name for uploader container entry point |
| `videoRecorder.uploader.config` | `` | Set value to uploader config file via YAML or `--set-file` |
Expand All @@ -808,14 +808,8 @@ This table contains the configuration parameters of the chart and their default
| `videoRecorder.startupProbe` | `{}` | Probe to check pod is started successfully |
| `videoRecorder.livenessProbe` | `{}` | Liveness probe settings |
| `videoRecorder.lifecycle` | `{}` | Define lifecycle events for video recorder |
| `videoRecorder.volume.name.folder` | `video` | Name is used to set for the volume to persist and share output video folder in container |
| `videoRecorder.volume.name.scripts` | `video-scripts` | Name is used to set for the volume to persist and share video recorder scripts in container |
| `videoRecorder.extraVolumeMounts` | `[]` | Extra mounts of declared ExtraVolumes into pod |
| `videoRecorder.extraVolumes` | `[]` | Extra Volumes declarations to be used in the pod (can be any supported volume type: ConfigMap, Secret, PVC, NFS, etc.) |
| `videoRecorder.rclone` | `See values.yaml` | Container spec for the uploader if `videoRecorder.uploader` is `s3`. Similarly, create for your new uploader |
| `videoRecorder.rclone.resources | `See values.yaml` | Resources for video uploader |
| `videoRecorder.rclone.extraEnvFrom` | `` | Custom environment taken from `configMap` or `secret` variables for video uploader |
| `videoRecorder.rclone.extraVolumeMounts` | `[]` | Extra mounts of declared ExtraVolumes into pod of video uploader |
| `customLabels` | `{}` | Custom labels for k8s resources |
| `ingress-nginx.enabled` | `false` | Enable the dependency chart Ingress controller for Kubernetes (https://github.com/kubernetes/ingress-nginx) |

Expand Down
Loading
Loading