Skip to content
Open
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
9 changes: 6 additions & 3 deletions DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ Operators, etc.) to support the namespace-level development environments:
Install Gateway API + GIE CRDs:

```bash
kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.3.0/standard-install.yaml
kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.4.0/standard-install.yaml
kubectl apply -f https://github.com/kubernetes-sigs/gateway-api-inference-extension/releases/latest/download/manifests.yaml
```

Expand Down Expand Up @@ -229,13 +229,16 @@ curl -s -w '\n' http://localhost:8080/v1/completions -H 'Content-Type: applicati

**1. Setting the EPP image and tag:**

You can optionally set a custom EPP image (otherwise, the default will be used):
You can optionally set a custom EPP image and tag (otherwise, defaults will be used):

```bash
export IMAGE_REGISTRY="<YOUR_REGISTRY>"
export EPP_TAG="<YOUR_TAG>"
export EPP_IMAGE="<YOUR_REGISTRY>/<YOUR_IMAGE>"
```

> [!NOTE]
> The full image reference will be constructed as `${EPP_IMAGE}:${EPP_TAG}`, where `EPP_IMAGE` defaults to `${IMAGE_REGISTRY}/llm-d-inference-scheduler`. For example, with `IMAGE_REGISTRY=quay.io/<my-id>` and `EPP_TAG=v1.0.0`, the final image will be `quay.io/<my-id>/llm-d-inference-scheduler:v1.0.0`.

**2. Setting the vLLM replicas:**

You can optionally set the vllm replicas:
Expand Down
Loading