Skip to content

Commit 46ace4e

Browse files
committed
updates to registry references
1 parent aabaeb5 commit 46ace4e

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

.tekton/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ Each repo includes a `.version.json` file at its root. This file controls:
2020
```json
2121
{
2222
"dev-version": "0.0.5",
23-
"dev-registry": "quay.io/vllm-d/<your project name>-dev",
23+
"dev-registry": "quay.io/llm-d/<your project name>-dev",
2424
"prod-version": "0.0.4",
25-
"prod-registry": "quay.io/vllm-d/<your project name>"
25+
"prod-registry": "quay.io/llm-d/<your project name>"
2626
}
2727
```
2828

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

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

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

4949
---
5050

.tekton/pipelinerun.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -635,4 +635,4 @@ spec:
635635
secretName: "git-auth-secret-neuralmagic"
636636
- name: registry-secret
637637
secret:
638-
secretName: quay-secret
638+
secretName: quay-secret-llm-d

.version.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"dev-version": "0.0.4",
3-
"dev-registry": "quay.io/vllm-d/vllm-sim-dev",
3+
"dev-registry": "quay.io/llm-d/vllm-sim-dev",
44
"prod-version": "0.0.3",
5-
"prod-registry": "quay.io/vllm-d/vllm-sim"
5+
"prod-registry": "quay.io/llm-d/vllm-sim"
66
}

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ SHELL := /usr/bin/env bash
3939
PROJECT_NAME ?= vllm-sim
4040
DEV_VERSION ?= 0.0.1
4141
PROD_VERSION ?= 0.0.0
42-
IMAGE_TAG_BASE ?= quay.io/vllm-d/$(PROJECT_NAME)
42+
IMAGE_TAG_BASE ?= quay.io/llm-d/$(PROJECT_NAME)
4343
IMG = $(IMAGE_TAG_BASE):$(DEV_VERSION)
4444
NAMESPACE ?= hc4ai-operator
4545

@@ -266,7 +266,7 @@ load-version-json: check-jq
266266
export DEV_VERSION; \
267267
export PROD_VERSION; \
268268
fi && \
269-
CURRENT_DEFAULT="quay.io/vllm-d/$(PROJECT_NAME)"; \
269+
CURRENT_DEFAULT="quay.io/llm-d/$(PROJECT_NAME)"; \
270270
if [ "$(IMAGE_TAG_BASE)" = "$$CURRENT_DEFAULT" ]; then \
271271
IMAGE_TAG_BASE=$$(jq -r '."dev-registry"' .version.json); \
272272
echo "✔ Loaded IMAGE_TAG_BASE from .version.json: $$IMAGE_TAG_BASE"; \

deploy/common/statefulset.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ spec:
1616
serviceAccountName: operator-controller-manager
1717
containers:
1818
- name: cmd
19-
image: quay.io/vllm-d/placeholder:placeholder
19+
image: quay.io/llm-d/placeholder:placeholder
2020
imagePullPolicy: Always

deploy/kustomization.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ configMapGenerator:
2525

2626
# Define the image to be updated.
2727
# images:
28-
# - name: quay.io/vllm-d/placeholder
29-
# newName: quay.io/vllm-d/${IMAGE_TAG_BASE}
28+
# - name: quay.io/llm-d/placeholder
29+
# newName: quay.io/llm-d/${IMAGE_TAG_BASE}
3030
# newTag: ${VERSION}
3131
patches:
3232
- path: common/patch-service.yaml

0 commit comments

Comments
 (0)