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 # -----------------------------------------------------------------------------