Skip to content

Commit 793965c

Browse files
committed
docs: add user docs for custom volumes/volume mounts
1 parent 4637fbe commit 793965c

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed

docs/sphinx/user-docs/cluster-configuration.rst

+49
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ requirements for creating the Ray Cluster.
2626
worker_memory_limits=2, # Default 2
2727
# image="", # Optional Field
2828
labels={"exampleLabel": "example", "secondLabel": "example"},
29+
volumes=[], # See Custom Volumes/Volume Mounts
30+
volume_mounts=[], # See Custom Volumes/Volume Mounts
2931
))
3032
3133
.. note::
@@ -48,6 +50,53 @@ apply additional labels to the RayCluster resource.
4850
After creating their ``cluster``, a user can call ``cluster.up()`` and
4951
``cluster.down()`` to respectively create or remove the Ray Cluster.
5052

53+
Custom Volumes/Volume Mounts
54+
----------------------------
55+
| To add custom Volumes and Volume Mounts to your Ray Cluster you need to create two lists ``volumes`` and ``volume_mounts``. The lists consist of ``V1Volume`` and ``V1VolumeMount`` objects respectively.
56+
| Populating these parameters will create Volumes and Volume Mounts for the head and each worker pod.
57+
58+
.. code:: python
59+
60+
from kubernetes.client import V1Volume, V1VolumeMount, V1EmptyDirVolumeSource, V1ConfigMapVolumeSource, V1KeyToPath, V1SecretVolumeSource
61+
# In this example we are using the Config Map, EmptyDir and Secret Volume types
62+
volume_mounts_list = [
63+
V1VolumeMount(
64+
mount_path="/home/ray/test1",
65+
name = "test"
66+
),
67+
V1VolumeMount(
68+
mount_path = "/home/ray/test2",
69+
name = "test2",
70+
),
71+
V1VolumeMount(
72+
mount_path = "/home/ray/test3",
73+
name = "test3",
74+
)
75+
]
76+
77+
volumes_list = [
78+
V1Volume(
79+
name="test",
80+
empty_dir=V1EmptyDirVolumeSource(size_limit="2Gi"),
81+
),
82+
V1Volume(
83+
name="test2",
84+
config_map=V1ConfigMapVolumeSource(
85+
name="test-config-map",
86+
items=[V1KeyToPath(key="test", path="data.txt")]
87+
)
88+
),
89+
V1Volume(
90+
name="test3",
91+
secret=V1SecretVolumeSource(
92+
secret_name="test-secret"
93+
)
94+
)
95+
]
96+
97+
| For more information on creating Volumes and Volume Mounts with Python check out the Python Kubernetes docs (`Volumes <https://github.com/kubernetes-client/python/blob/master/kubernetes/docs/V1Volume.md>`__, `Volume Mounts <https://github.com/kubernetes-client/python/blob/master/kubernetes/docs/V1VolumeMount.md>`__).
98+
| You can also find further information on Volumes and Volume Mounts by visiting the Kubernetes `documentation <https://kubernetes.io/docs/concepts/storage/volumes/>`__.
99+
51100
Deprecating Parameters
52101
----------------------
53102

0 commit comments

Comments
 (0)