Skip to content

Change quay.io path #102

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .tekton/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ Each repo includes a `.version.json` file at its root. This file controls:
```json
{
"dev-version": "0.0.5",
"dev-registry": "quay.io/vllm-d/<your project name>-dev",
"dev-registry": "quay.io/llm-d/<your project name>-dev",
"prod-version": "0.0.4",
"prod-registry": "quay.io/vllm-d/<your project name>"
"prod-registry": "quay.io/llm-d/<your project name>"
}
```

Expand All @@ -43,8 +43,8 @@ The pipeline reads this file to:

This pipeline maintains two container repositories for this GitHub repository, as follows.

- `quay.io/vllm-d/<repoName>-dev`. Hold builds from the `dev` branch as described below.
- `quay.io/vllm-d/<repoName>`. Holds promotions to prod, as described below.
- `quay.io/llm-d/<repoName>-dev`. Hold builds from the `dev` branch as described below.
- `quay.io/llm-d/<repoName>`. Holds promotions to prod, as described below.

---

Expand Down
4 changes: 2 additions & 2 deletions .version.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"dev-version": "0.0.5",
"dev-registry": "quay.io/vllm-d/gateway-api-inference-extension-dev",
"dev-registry": "quay.io/llm-d/gateway-api-inference-extension-dev",
"prod-version": "0.0.4",
"prod-registry": "quay.io/vllm-d/gateway-api-inference-extension"
"prod-registry": "quay.io/llm-d/gateway-api-inference-extension"
}
2 changes: 1 addition & 1 deletion DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ DEV_VERSION=$EPP_TAG make image-build
Tag the image for your private registry and push it:

```bash
$CONTAINER_RUNTIME tag quay.io/vllm-d/gateway-api-inference-extension/epp:$TAG \
$CONTAINER_RUNTIME tag quay.io/llm-d/gateway-api-inference-extension/epp:$TAG \
<MY_REGISTRY>/<MY_IMAGE>:$EPP_TAG
$CONTAINER_RUNTIME push <MY_REGISTRY>/<MY_IMAGE>:$EPP_TAG
```
Expand Down
2 changes: 1 addition & 1 deletion deploy/components/inference-gateway/deployments.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spec:
terminationGracePeriodSeconds: 130
containers:
- name: epp
image: quay.io/vllm-d/gateway-api-inference-extension/epp:latest
image: quay.io/llm-d/gateway-api-inference-extension/epp:latest
imagePullPolicy: IfNotPresent
args:
- -poolName
Expand Down
2 changes: 1 addition & 1 deletion deploy/components/inference-gateway/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ resources:
- httproutes.yaml

images:
- name: quay.io/vllm-d/gateway-api-inference-extension/epp
- name: quay.io/llm-d/gateway-api-inference-extension/epp
newTag: 0.0.1
2 changes: 1 addition & 1 deletion deploy/components/vllm-sim/deployments.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spec:
spec:
containers:
- name: vllm
image: quay.io/vllm-d/vllm-sim:latest
image: quay.io/llm-d/vllm-sim:latest
imagePullPolicy: IfNotPresent
args:
- "--port=8000"
Expand Down
2 changes: 1 addition & 1 deletion deploy/components/vllm-sim/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ resources:
- deployments.yaml

images:
- name: quay.io/vllm-d/vllm-sim
- name: quay.io/llm-d/vllm-sim
newTag: 0.0.2
4 changes: 2 additions & 2 deletions deploy/environments/dev/kubernetes-istio/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ resources:
- destinationrules.yaml

images:
- name: quay.io/vllm-d/vllm-sim
- name: quay.io/llm-d/vllm-sim
newName: ${VLLM_SIM_IMAGE}
newTag: ${VLLM_SIM_TAG}
- name: quay.io/vllm-d/gateway-api-inference-extension/epp
- name: quay.io/llm-d/gateway-api-inference-extension/epp
newName: ${EPP_IMAGE}
newTag: ${EPP_TAG}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ resources:
- gateway-parameters.yaml

images:
- name: quay.io/vllm-d/gateway-api-inference-extension/epp
- name: quay.io/llm-d/gateway-api-inference-extension/epp
newName: ${EPP_IMAGE}
newTag: ${EPP_TAG}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ resources:
- ../../../../components/vllm-p2p/

images:
- name: quay.io/vllm-d/vllm-d-dev:0.0.2
- name: quay.io/llm-d/llm-d-dev:0.0.2
newName: ${VLLM_IMAGE}
newTag: ${VLLM_TAG}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ resources:
- ../../../../components/vllm-sim/

images:
- name: quay.io/vllm-d/vllm-sim
- name: quay.io/llm-d/vllm-sim
newTag: ${VLLM_SIM_TAG}

patches:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ resources:
- ../../../../components/vllm/

images:
- name: quay.io/vllm-d/vllm-d-dev
- name: quay.io/llm-d/llm-d-dev
newName: ${VLLM_IMAGE}
newTag: ${VLLM_TAG}

Expand Down
2 changes: 1 addition & 1 deletion scripts/kind-load-images.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ set -eo pipefail
: "${CLUSTER_NAME:=gie-dev}"

# Set the default IMAGE_REGISTRY if not provided
: "${IMAGE_REGISTRY:=quay.io/vllm-d}"
: "${IMAGE_REGISTRY:=quay.io/llm-d}"

# Set a default VLLM_SIMULATOR_IMAGE if not provided
: "${VLLM_SIMULATOR_IMAGE:=vllm-sim}"
Expand Down
6 changes: 3 additions & 3 deletions scripts/kubernetes-dev-env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export VLLM_MODE="${VLLM_MODE:-vllm-sim}"

case "${VLLM_MODE}" in
vllm-sim)
export VLLM_SIM_IMAGE="${VLLM_SIM_IMAGE:-quay.io/vllm-d/vllm-sim}"
export VLLM_SIM_IMAGE="${VLLM_SIM_IMAGE:-quay.io/llm-d/vllm-sim}"
export VLLM_SIM_TAG="${VLLM_SIM_TAG:-0.0.2}"
export EPP_IMAGE="${EPP_IMAGE:-us-central1-docker.pkg.dev/k8s-staging-images/gateway-api-inference-extension/epp}"
export EPP_TAG="${EPP_TAG:-main}"
Expand All @@ -55,9 +55,9 @@ case "${VLLM_MODE}" in
export VLLM_DEPLOYMENT_NAME="${VLLM_DEPLOYMENT_NAME:-vllm-${MODEL_LABEL}}"

if [[ "$VLLM_MODE" == "vllm" ]]; then
export VLLM_IMAGE="${VLLM_IMAGE:-quay.io/vllm-d/vllm-d-dev}"
export VLLM_IMAGE="${VLLM_IMAGE:-quay.io/llm-d/llm-d-dev}"
export VLLM_TAG="${VLLM_TAG:-0.0.2}"
export EPP_IMAGE="${EPP_IMAGE:-quay.io/vllm-d/gateway-api-inference-extension-dev}"
export EPP_IMAGE="${EPP_IMAGE:-quay.io/llm-d/gateway-api-inference-extension-dev}"
export EPP_TAG="${EPP_TAG:-0.0.4}"
export MAX_MODEL_LEN="${MAX_MODEL_LEN:-8192}"
export PVC_NAME="${PVC_NAME:-vllm-storage-claim}"
Expand Down