Skip to content

Commit 1c74f94

Browse files
committed
docs: add user docs for custom volumes/volume mounts
1 parent 917824c commit 1c74f94

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
@@ -27,6 +27,8 @@ requirements for creating the Ray Cluster.
2727
# image="", # Optional Field
2828
labels={"exampleLabel": "example", "secondLabel": "example"},
2929
annotations={"key1":"value1", "key2":"value2"},
30+
volumes=[], # See Custom Volumes/Volume Mounts
31+
volume_mounts=[], # See Custom Volumes/Volume Mounts
3032
))
3133
3234
.. note::
@@ -49,6 +51,53 @@ apply additional labels to the RayCluster resource.
4951
After creating their ``cluster``, a user can call ``cluster.up()`` and
5052
``cluster.down()`` to respectively create or remove the Ray Cluster.
5153

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

0 commit comments

Comments
 (0)