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
volume_mounts=[], # See Custom Volumes/Volume Mounts
29
31
))
30
32
31
33
.. note::
@@ -48,6 +50,53 @@ apply additional labels to the RayCluster resource.
48
50
After creating their ``cluster``, a user can call ``cluster.up()`` and
49
51
``cluster.down()`` to respectively create or remove the Ray Cluster.
50
52
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
|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/>`__.
0 commit comments