We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5729275 commit e86d1ebCopy full SHA for e86d1eb
gpustack_runtime/deployer/kuberentes.py
@@ -921,6 +921,13 @@ def _create_pod(
921
),
922
]
923
924
+ # Parameterize volumes
925
+ self._append_pod_volumes(
926
+ pod,
927
+ workload,
928
+ ephemeral_filename_mapping,
929
+ )
930
+
931
cnt_init, cnt_run = -1, -1
932
for ci, c in enumerate(workload.containers):
933
# Annotate container info.
@@ -1064,13 +1071,6 @@ def _create_pod(
1064
1071
requests=(resources if resources else None),
1065
1072
)
1066
1073
1067
- # Parameterize volumes
1068
- self._append_pod_volumes(
1069
- pod,
1070
- workload,
- ephemeral_filename_mapping,
- )
-
1074
# Parameterize mounts
1075
self._append_container_volume_mounts(
1076
container,
0 commit comments