Skip to content

Commit 6824d28

Browse files
authored
Merge pull request #6 from vllm-project/unify-images
chore: unify docker images
2 parents 98a976c + af1886f commit 6824d28

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/docker-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,5 @@ jobs:
4747
file: ./Dockerfile.extproc
4848
push: ${{ github.event_name != 'pull_request' }} # Only push on merge to main, not on PRs
4949
tags: |
50-
${{ inputs.is_nightly == true && format('ghcr.io/{0}/llm_semantic_router/extproc:nightly-{1}', github.repository_owner, steps.date.outputs.date_tag) || format('ghcr.io/{0}/llm_semantic_router/extproc:{1}', github.repository_owner, github.sha) }}
51-
${{ inputs.is_nightly != true && format('ghcr.io/{0}/llm_semantic_router/extproc:latest', github.repository_owner) || '' }}
50+
${{ inputs.is_nightly == true && format('ghcr.io/{0}/semantic-router/extproc:nightly-{1}', github.repository_owner, steps.date.outputs.date_tag) || format('ghcr.io/{0}/semantic-router/extproc:{1}', github.repository_owner, github.sha) }}
51+
${{ inputs.is_nightly != true && format('ghcr.io/{0}/semantic-router/extproc:latest', github.repository_owner) || '' }}

.github/workflows/docker-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@ jobs:
3434
file: ./Dockerfile.extproc
3535
push: true
3636
tags: |
37-
ghcr.io/${{ github.repository_owner }}/llm_semantic_router/extproc:${{ steps.extract_tag.outputs.tag }}
38-
ghcr.io/${{ github.repository_owner }}/llm_semantic_router/extproc:latest
37+
ghcr.io/${{ github.repository_owner }}/semantic-router/extproc:${{ steps.extract_tag.outputs.tag }}
38+
ghcr.io/${{ github.repository_owner }}/semantic-router/extproc:latest

deploy/kubernetes/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ spec:
6969
mountPath: /app/models
7070
containers:
7171
- name: semantic-router
72-
image: ghcr.io/redhat-et/llm_semantic_router/extproc:latest
72+
image: ghcr.io/vllm-project/semantic-router/extproc:latest
7373
ports:
7474
- containerPort: 50051
7575
name: grpc

deploy/kubernetes/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ configMapGenerator:
2121
namespace: semantic-router
2222

2323
images:
24-
- name: ghcr.io/redhat-et/llm_semantic_router/extproc
24+
- name: ghcr.io/vllm-project/semantic-router/extproc
2525
newTag: latest
2626

0 commit comments

Comments
 (0)