Skip to content

Commit 9b3e8e0

Browse files
committed
fix: pre-commit linting errors
1 parent 47ff78a commit 9b3e8e0

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

helm-chart/ray-cluster/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ helm uninstall raycluster
8484
| head.labels | object | `{}` | Labels for the head pod |
8585
| head.serviceAccountName | string | `""` | |
8686
| head.restartPolicy | string | `""` | |
87+
| head.runtimeClassName | string | `""` | |
8788
| head.containerEnv | list | `[]` | |
8889
| head.envFrom | list | `[]` | envFrom to pass to head pod |
8990
| head.resources.limits.cpu | string | `"1"` | |
@@ -113,6 +114,7 @@ helm uninstall raycluster
113114
| worker.labels | object | `{}` | Labels for the worker pod |
114115
| worker.serviceAccountName | string | `""` | |
115116
| worker.restartPolicy | string | `""` | |
117+
| worker.runtimeClassName | string | `""` | runtimeClassName is the name of the RuntimeClass to use to run the worker Pods. |
116118
| worker.initContainers | list | `[]` | Init containers to add to the worker pod |
117119
| worker.containerEnv | list | `[]` | |
118120
| worker.envFrom | list | `[]` | envFrom to pass to worker pod |
@@ -142,6 +144,7 @@ helm uninstall raycluster
142144
| additionalWorkerGroups.smallGroup.labels | object | `{}` | Labels for the additional worker pod |
143145
| additionalWorkerGroups.smallGroup.serviceAccountName | string | `""` | |
144146
| additionalWorkerGroups.smallGroup.restartPolicy | string | `""` | |
147+
| additionalWorkerGroups.smallGroup.runtimeClassName | string | `""` | runtimeClassName for this additional worker group. Empty string means default runtime. |
145148
| additionalWorkerGroups.smallGroup.containerEnv | list | `[]` | |
146149
| additionalWorkerGroups.smallGroup.envFrom | list | `[]` | envFrom to pass to additional worker pod |
147150
| additionalWorkerGroups.smallGroup.resources.limits.cpu | int | `1` | |

helm-chart/ray-cluster/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ worker:
214214
serviceAccountName: ""
215215
restartPolicy: ""
216216

217-
# runtimeClassName is the name of the RuntimeClass to use to run the worker Pods.
217+
# -- runtimeClassName is the name of the RuntimeClass to use to run the worker Pods.
218218
runtimeClassName: ""
219219

220220
# -- Init containers to add to the worker pod
@@ -325,7 +325,7 @@ additionalWorkerGroups:
325325
serviceAccountName: ""
326326
restartPolicy: ""
327327

328-
# runtimeClassName for this additional worker group. Empty string means default runtime.
328+
# -- runtimeClassName for this additional worker group. Empty string means default runtime.
329329
runtimeClassName: ""
330330

331331
# containerEnv specifies environment variables for the Ray container,

0 commit comments

Comments
 (0)