Skip to content
Merged
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
16 changes: 8 additions & 8 deletions site-src/guides/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@

This project is still in an alpha state and breaking changes may occur in the future.

???+ warning


This page is out of date with the v1.0.0 release candidate. Updates under active development

This quickstart guide is intended for engineers familiar with k8s and model servers (vLLM in this instance). The goal of this guide is to get an Inference Gateway up and running!

Expand Down Expand Up @@ -53,6 +49,10 @@ Tooling:

=== "CPU-Based Model Server"

???+ warning

CPU deployment can be unreliable i.e. the pods may crash/restart because of resource contraints.

This setup is using the formal `vllm-cpu` image, which according to the documentation can run vLLM on x86 CPU platform.
For this setup, we use approximately 9.5GB of memory and 12 CPUs for each replica.

Expand Down Expand Up @@ -94,7 +94,7 @@ Tooling:
helm install vllm-llama3-8b-instruct \
--set inferencePool.modelServers.matchLabels.app=vllm-llama3-8b-instruct \
--set provider.name=$GATEWAY_PROVIDER \
--version v0.5.1 \
--version v1.0.0 \
oci://registry.k8s.io/gateway-api-inference-extension/charts/inferencepool
```

Expand All @@ -105,7 +105,7 @@ Tooling:
helm install vllm-llama3-8b-instruct \
--set inferencePool.modelServers.matchLabels.app=vllm-llama3-8b-instruct \
--set provider.name=$GATEWAY_PROVIDER \
--version v0.5.1 \
--version v1.0.0 \
oci://registry.k8s.io/gateway-api-inference-extension/charts/inferencepool
```

Expand All @@ -116,7 +116,7 @@ Tooling:
helm install vllm-llama3-8b-instruct \
--set inferencePool.modelServers.matchLabels.app=vllm-llama3-8b-instruct \
--set provider.name=$GATEWAY_PROVIDER \
--version v0.5.1 \
--version v1.0.0 \
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this lgtm.
can we add this update to the release script (only for final release, not for RCs), so we don't need to manually update it after every release?

we have an issue opened for that #1494

oci://registry.k8s.io/gateway-api-inference-extension/charts/inferencepool
```

Expand All @@ -127,7 +127,7 @@ Tooling:
helm install vllm-llama3-8b-instruct \
--set inferencePool.modelServers.matchLabels.app=vllm-llama3-8b-instruct \
--set provider.name=$GATEWAY_PROVIDER \
--version v0.5.1 \
--version v1.0.0 \
oci://registry.k8s.io/gateway-api-inference-extension/charts/inferencepool
```

Expand Down