File tree 1 file changed +0
-2
lines changed
1 file changed +0
-2
lines changed Original file line number Diff line number Diff line change @@ -88,15 +88,13 @@ kubectl --context ${KUBE_CONTEXT} -n local-path-storage wait --for=condition=Rea
88
88
89
89
# Load the vllm simulator image into the cluster
90
90
if [ " ${CONTAINER_RUNTIME} " == " podman" ]; then
91
- podman tag localhost/vllm-d/vllm-sim:${VLLM_SIMULATOR_VERSION} ${IMAGE_REGISTRY} /vllm-sim:${VLLM_SIMULATOR_VERSION}
92
91
podman save ${IMAGE_REGISTRY} /vllm-sim:${VLLM_SIMULATOR_VERSION} -o /dev/stdout | kind --name ${CLUSTER_NAME} load image-archive /dev/stdin
93
92
else
94
93
kind --name ${CLUSTER_NAME} load docker-image ${IMAGE_REGISTRY} /vllm-sim:${VLLM_SIMULATOR_VERSION}
95
94
fi
96
95
97
96
# Load the ext_proc endpoint-picker image into the cluster
98
97
if [ " ${CONTAINER_RUNTIME} " == " podman" ]; then
99
- podman tag localhost/${ENDPOINT_PICKER_IMAGE} :${ENDPOINT_PICKER_VERSION} ${IMAGE_REGISTRY} /${ENDPOINT_PICKER_IMAGE} :${ENDPOINT_PICKER_VERSION}
100
98
podman save ${IMAGE_REGISTRY} /${ENDPOINT_PICKER_IMAGE} :${ENDPOINT_PICKER_VERSION} -o /dev/stdout | kind --name ${CLUSTER_NAME} load image-archive /dev/stdin
101
99
else
102
100
kind --name ${CLUSTER_NAME} load docker-image ${IMAGE_REGISTRY} /${ENDPOINT_PICKER_IMAGE} :${ENDPOINT_PICKER_VERSION}
You can’t perform that action at this time.
0 commit comments