Skip to content

Commit 9202462

Browse files
committed
fix: remove podman load instructions that are no longer needed
Signed-off-by: Shane Utt <[email protected]>
1 parent 6bd139f commit 9202462

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

scripts/run-kind.sh

-2
Original file line numberDiff line numberDiff line change
@@ -88,15 +88,13 @@ kubectl --context ${KUBE_CONTEXT} -n local-path-storage wait --for=condition=Rea
8888

8989
# Load the vllm simulator image into the cluster
9090
if [ "${CONTAINER_RUNTIME}" == "podman" ]; then
91-
podman tag localhost/vllm-d/vllm-sim:${VLLM_SIMULATOR_VERSION} ${IMAGE_REGISTRY}/vllm-sim:${VLLM_SIMULATOR_VERSION}
9291
podman save ${IMAGE_REGISTRY}/vllm-sim:${VLLM_SIMULATOR_VERSION} -o /dev/stdout | kind --name ${CLUSTER_NAME} load image-archive /dev/stdin
9392
else
9493
kind --name ${CLUSTER_NAME} load docker-image ${IMAGE_REGISTRY}/vllm-sim:${VLLM_SIMULATOR_VERSION}
9594
fi
9695

9796
# Load the ext_proc endpoint-picker image into the cluster
9897
if [ "${CONTAINER_RUNTIME}" == "podman" ]; then
99-
podman tag localhost/${ENDPOINT_PICKER_IMAGE}:${ENDPOINT_PICKER_VERSION} ${IMAGE_REGISTRY}/${ENDPOINT_PICKER_IMAGE}:${ENDPOINT_PICKER_VERSION}
10098
podman save ${IMAGE_REGISTRY}/${ENDPOINT_PICKER_IMAGE}:${ENDPOINT_PICKER_VERSION} -o /dev/stdout | kind --name ${CLUSTER_NAME} load image-archive /dev/stdin
10199
else
102100
kind --name ${CLUSTER_NAME} load docker-image ${IMAGE_REGISTRY}/${ENDPOINT_PICKER_IMAGE}:${ENDPOINT_PICKER_VERSION}

0 commit comments

Comments
 (0)