From 3f283ac92a1a11685c5644b9f31b311dcfb82dad Mon Sep 17 00:00:00 2001 From: Ruoyu Ying Date: Thu, 26 Jun 2025 23:12:08 -0700 Subject: [PATCH] doc: update the release-quickstart.sh to include the image tag for lora-syncer Signed-off-by: Ruoyu Ying --- hack/release-quickstart.sh | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/hack/release-quickstart.sh b/hack/release-quickstart.sh index 8f25cbd88..0a8fd64b1 100755 --- a/hack/release-quickstart.sh +++ b/hack/release-quickstart.sh @@ -127,6 +127,15 @@ sed -i.bak -E "s|(llm-d/llm-d-inference-sim:)[^\"[:space:]]+|\1v${VLLM_SIM}|g" " # Also change the imagePullPolicy from Always to IfNotPresent on lines containing the vLLM image. sed -i.bak '/llm-d\/llm-d-inference-sim/{n;s/Always/IfNotPresent/;}' "$VLLM_SIM_DEPLOY" +# Update the container tag for lora-syncer in vLLM CPU and GPU deployment manifests. +sed -i.bak -E "s|(us-central1-docker\.pkg\.dev/k8s-staging-images/gateway-api-inference-extension/lora-syncer:)[^\"[:space:]]+|\1${RELEASE_TAG}|g" "$VLLM_GPU_DEPLOY" "$VLLM_CPU_DEPLOY" + +# Update the container image pull policy for lora-syncer in vLLM CPU and GPU deployment manifests. +sed -i.bak '/us-central1-docker.pkg.dev\/k8s-staging-images\/gateway-api-inference-extension\/lora-syncer/{n;s/Always/IfNotPresent/;}' "$VLLM_GPU_DEPLOY" "$VLLM_CPU_DEPLOY" + +# Update the container registry for lora-syncer in vLLM CPU and GPU deployment manifests. +sed -i.bak -E "s|us-central1-docker\.pkg\.dev/k8s-staging-images|registry.k8s.io|g" "$VLLM_GPU_DEPLOY" "$VLLM_CPU_DEPLOY" + # ----------------------------------------------------------------------------- # Stage the changes # -----------------------------------------------------------------------------