Skip to content
Closed
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 config/templates/values/defaults.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ _anchors:
llm-d-router-endpoint-picker_version: &llm-d-router-endpoint-picker_version main
llm-d-inference-scheduler_version: &llm-d-inference-scheduler_version v0.8.0
llm-d-routing-sidecar_version: &llm-d-routing-sidecar_version v0.8.0
llm-d-uds-tokenizer_version: &llm-d-uds-tokenizer_version v0.8.0
llm-d-uds-tokenizer_version: &llm-d-uds-tokenizer_version v0.9.0
llm-d-cuda_version: &llm-d-cuda_version v0.7.0
llm-d-inference-sim_version: &llm-d-inference-sim_version v0.8.2
llm-d-benchmark_version: &llm-d-benchmark_version v0.7.0
Expand Down
2 changes: 1 addition & 1 deletion docs/upstream-versions.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ generation (and plan) time.
| **python** | `3.10` | tag | `config/templates/values/defaults.yaml` line 418 (`images.python`) | [Docker Hub: python](https://hub.docker.com/_/python) (`python`) |
| **routerEndpointPicker** | `main` | tag | `config/templates/values/defaults.yaml` line 393 (`images.routerEndpointPicker`) | [llm-d/llm-d-router](https://github.com/llm-d/llm-d-router) (`ghcr.io/llm-d/llm-d-router-endpoint-picker-dev`) |
| **routingSidecar** | `v0.8.0` | tag | `config/templates/values/defaults.yaml` line 405 (`images.routingSidecar`) | [llm-d/llm-d-routing-sidecar](https://github.com/llm-d/llm-d-routing-sidecar) (`ghcr.io/llm-d/llm-d-routing-sidecar`) |
| **udsTokenizer** | `v0.8.0` | tag | `config/templates/values/defaults.yaml` line 411 (`images.udsTokenizer`) | [llm-d/llm-d-kv-cache (services/uds_tokenizer)](https://github.com/llm-d/llm-d-kv-cache) (`ghcr.io/llm-d/llm-d-uds-tokenizer`) |
| **udsTokenizer** | `v0.9.0` | tag | `config/templates/values/defaults.yaml` line 411 (`images.udsTokenizer`) | [llm-d/llm-d-kv-cache (services/uds_tokenizer)](https://github.com/llm-d/llm-d-kv-cache) (`ghcr.io/llm-d/llm-d-uds-tokenizer`) |
| **vllm** | `v0.23.0` | tag | `config/templates/values/defaults.yaml` line 370 (`images.vllm`) | [vllm-project/vllm](https://github.com/vllm-project/vllm) (`docker.io/vllm/vllm-openai`) |
| **vllmOpenai** | `v0.23.0` | tag | `config/templates/values/defaults.yaml` line 381 (`images.vllmOpenai`) | [vllm-project/vllm](https://github.com/vllm-project/vllm) (`docker.io/vllm/vllm-openai`) |

Expand Down
4 changes: 2 additions & 2 deletions tests/test_version_resolver.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def _images() -> dict:
},
"udsTokenizer": {
"repository": "ghcr.io/llm-d/llm-d-uds-tokenizer",
"tag": "v0.8.0",
"tag": "v0.9.0",
"pullPolicy": "IfNotPresent",
},
"broken": {
Expand All @@ -85,7 +85,7 @@ def test_explicit_tag(self, monkeypatch: pytest.MonkeyPatch) -> None:
resolver = _make_resolver(monkeypatch)
owner = {"imageKey": "udsTokenizer"}
resolver._resolve_image_override(owner, _images(), "test")
assert owner["image"] == "ghcr.io/llm-d/llm-d-uds-tokenizer:v0.8.0"
assert owner["image"] == "ghcr.io/llm-d/llm-d-uds-tokenizer:v0.9.0"
assert owner["imagePullPolicy"] == "IfNotPresent"
assert "imageKey" not in owner

Expand Down