diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 75e70767..b83158f2 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -47,5 +47,5 @@ jobs: file: ./Dockerfile.extproc push: ${{ github.event_name != 'pull_request' }} # Only push on merge to main, not on PRs tags: | - ${{ 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) }} - ${{ inputs.is_nightly != true && format('ghcr.io/{0}/llm_semantic_router/extproc:latest', github.repository_owner) || '' }} \ No newline at end of file + ${{ 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) }} + ${{ inputs.is_nightly != true && format('ghcr.io/{0}/semantic-router/extproc:latest', github.repository_owner) || '' }} \ No newline at end of file diff --git a/.github/workflows/docker-release.yml b/.github/workflows/docker-release.yml index 2cbb99f1..9e5ea648 100644 --- a/.github/workflows/docker-release.yml +++ b/.github/workflows/docker-release.yml @@ -34,5 +34,5 @@ jobs: file: ./Dockerfile.extproc push: true tags: | - ghcr.io/${{ github.repository_owner }}/llm_semantic_router/extproc:${{ steps.extract_tag.outputs.tag }} - ghcr.io/${{ github.repository_owner }}/llm_semantic_router/extproc:latest + ghcr.io/${{ github.repository_owner }}/semantic-router/extproc:${{ steps.extract_tag.outputs.tag }} + ghcr.io/${{ github.repository_owner }}/semantic-router/extproc:latest diff --git a/deploy/kubernetes/deployment.yaml b/deploy/kubernetes/deployment.yaml index 6998385d..c0564a6b 100644 --- a/deploy/kubernetes/deployment.yaml +++ b/deploy/kubernetes/deployment.yaml @@ -69,7 +69,7 @@ spec: mountPath: /app/models containers: - name: semantic-router - image: ghcr.io/redhat-et/llm_semantic_router/extproc:latest + image: ghcr.io/vllm-project/semantic-router/extproc:latest ports: - containerPort: 50051 name: grpc diff --git a/deploy/kubernetes/kustomization.yaml b/deploy/kubernetes/kustomization.yaml index 1c458e25..90bd3006 100644 --- a/deploy/kubernetes/kustomization.yaml +++ b/deploy/kubernetes/kustomization.yaml @@ -21,6 +21,6 @@ configMapGenerator: namespace: semantic-router images: - - name: ghcr.io/redhat-et/llm_semantic_router/extproc + - name: ghcr.io/vllm-project/semantic-router/extproc newTag: latest