Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/integration-test-k8s.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
strategy:
fail-fast: false # Continue testing other profiles even if one fails
matrix:
profile: [ai-gateway, aibrix, routing-strategies, llm-d, istio]
profile: [ai-gateway, aibrix, routing-strategies, llm-d, istio, production-stack]

steps:
- name: Check out the repo
Expand Down
3 changes: 2 additions & 1 deletion e2e/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The framework follows a **separation of concerns** design:
- **aibrix**: Tests Semantic Router with vLLM AIBrix integration
- **dynamic-config**: Tests Semantic Router with Kubernetes CRD-based configuration (IntelligentRoute/IntelligentPool)
- **istio**: Tests Semantic Router with Istio service mesh integration
- **production-stack**: Tests vLLM Production Stack configurations (future)
- **production-stack**: Tests vLLM Production Stack configurations
- **llm-d**: Tests Semantic Router with LLM-D distributed inference
- **dynamo**: Tests with Nvidia Dynamo (future)

Expand Down Expand Up @@ -131,6 +131,7 @@ make e2e-test

```bash
make e2e-test E2E_PROFILE=ai-gateway
make e2e-test E2E_PROFILE=production-stack
```

### Run specific test cases
Expand Down
4 changes: 4 additions & 0 deletions e2e/cmd/e2e/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,15 @@ import (
dynamicconfig "github.com/vllm-project/semantic-router/e2e/profiles/dynamic-config"
istio "github.com/vllm-project/semantic-router/e2e/profiles/istio"
llmd "github.com/vllm-project/semantic-router/e2e/profiles/llm-d"
productionstack "github.com/vllm-project/semantic-router/e2e/profiles/production-stack"
routingstrategies "github.com/vllm-project/semantic-router/e2e/profiles/routing-strategies"

// Import profiles to register test cases
_ "github.com/vllm-project/semantic-router/e2e/profiles/ai-gateway"
_ "github.com/vllm-project/semantic-router/e2e/profiles/aibrix"
_ "github.com/vllm-project/semantic-router/e2e/profiles/istio"
_ "github.com/vllm-project/semantic-router/e2e/profiles/llm-d"
_ "github.com/vllm-project/semantic-router/e2e/profiles/production-stack"
_ "github.com/vllm-project/semantic-router/e2e/profiles/routing-strategies"
)

Expand Down Expand Up @@ -113,6 +115,8 @@ func getProfile(name string) (framework.Profile, error) {
return istio.NewProfile(), nil
case "llm-d":
return llmd.NewProfile(), nil
case "production-stack":
return productionstack.NewProfile(), nil
case "routing-strategies":
return routingstrategies.NewProfile(), nil
default:
Expand Down
Loading
Loading