Skip to content

Commit 310c2ee

Browse files
authored
doc: update the release-quickstart.sh to include the image tag for lora-syncer (#1080)
Signed-off-by: Ruoyu Ying <[email protected]>
1 parent 42bd829 commit 310c2ee

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

hack/release-quickstart.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,15 @@ sed -i.bak -E "s|(llm-d/llm-d-inference-sim:)[^\"[:space:]]+|\1v${VLLM_SIM}|g" "
127127
# Also change the imagePullPolicy from Always to IfNotPresent on lines containing the vLLM image.
128128
sed -i.bak '/llm-d\/llm-d-inference-sim/{n;s/Always/IfNotPresent/;}' "$VLLM_SIM_DEPLOY"
129129

130+
# Update the container tag for lora-syncer in vLLM CPU and GPU deployment manifests.
131+
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"
132+
133+
# Update the container image pull policy for lora-syncer in vLLM CPU and GPU deployment manifests.
134+
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"
135+
136+
# Update the container registry for lora-syncer in vLLM CPU and GPU deployment manifests.
137+
sed -i.bak -E "s|us-central1-docker\.pkg\.dev/k8s-staging-images|registry.k8s.io|g" "$VLLM_GPU_DEPLOY" "$VLLM_CPU_DEPLOY"
138+
130139
# -----------------------------------------------------------------------------
131140
# Stage the changes
132141
# -----------------------------------------------------------------------------

0 commit comments

Comments
 (0)