@@ -106,10 +106,22 @@ head:
106106 hostPath :
107107 path : /opt/data-platform/data/log
108108 type : DirectoryOrCreate
109+ - name : dataset-volume
110+ hostPath :
111+ path : /opt/data-platform/data/dataset
112+ type : DirectoryOrCreate
113+ - name : flow-volume
114+ hostPath :
115+ path : /opt/data-platform/data/flow
116+ type : DirectoryOrCreate
109117 volumeMounts :
110118 - mountPath : /tmp/ray
111119 name : log-volume
112120 subPath : ray
121+ - mountPath : /dataset
122+ name : dataset-volume
123+ - mountPath : /flow
124+ name : flow-volume
113125 # sidecarContainers specifies additional containers to attach to the Ray pod.
114126 # Follows standard K8s container spec.
115127 sidecarContainers :
@@ -127,6 +139,10 @@ head:
127139 volumeMounts :
128140 - mountPath : /var/log/data-platform
129141 name : log-volume
142+ - mountPath : /dataset
143+ name : dataset-volume
144+ - mountPath : /flow
145+ name : flow-volume
130146 # See docs/guidance/pod-command.md for more details about how to specify
131147 # container command for head Pod.
132148 command : []
@@ -210,10 +226,22 @@ worker:
210226 hostPath :
211227 path : /opt/data-platform/data/log
212228 type : DirectoryOrCreate
229+ - name : dataset-volume
230+ hostPath :
231+ path : /opt/data-platform/data/dataset
232+ type : DirectoryOrCreate
233+ - name : flow-volume
234+ hostPath :
235+ path : /opt/data-platform/data/flow
236+ type : DirectoryOrCreate
213237 volumeMounts :
214238 - mountPath : /tmp/ray
215239 name : log-volume
216240 subPath : ray
241+ - mountPath : /dataset
242+ name : dataset-volume
243+ - mountPath : /flow
244+ name : flow-volume
217245 # sidecarContainers specifies additional containers to attach to the Ray pod.
218246 # Follows standard K8s container spec.
219247 sidecarContainers : []
@@ -291,10 +319,22 @@ additionalWorkerGroups:
291319 hostPath :
292320 path : /opt/data-platform/data/log
293321 type : DirectoryOrCreate
322+ - name : dataset-volume
323+ hostPath :
324+ path : /opt/data-platform/data/dataset
325+ type : DirectoryOrCreate
326+ - name : flow-volume
327+ hostPath :
328+ path : /opt/data-platform/data/flow
329+ type : DirectoryOrCreate
294330 volumeMounts :
295331 - mountPath : /tmp/ray
296332 name : log-volume
297333 subPath : ray
334+ - mountPath : /dataset
335+ name : dataset-volume
336+ - mountPath : /flow
337+ name : flow-volume
298338 sidecarContainers : []
299339 # See docs/guidance/pod-command.md for more details about how to specify
300340 # container command for worker Pod.
0 commit comments