Skip to content

Commit

Permalink
fix(docs): changed to kubectl create to prevent error seen in Issue #743
Browse files Browse the repository at this point in the history
  • Loading branch information
jolfr committed Feb 26, 2025
1 parent 51651cf commit bce0ec5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/source/getting_started/installation/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ Stable Version
.. code:: bash
# Install component dependencies
kubectl apply -f https://github.com/vllm-project/aibrix/releases/download/v0.2.0/aibrix-dependency-v0.2.0.yaml
kubectl create -f https://github.com/vllm-project/aibrix/releases/download/v0.2.0/aibrix-dependency-v0.2.0.yaml
# Install aibrix components
kubectl apply -f https://github.com/vllm-project/aibrix/releases/download/v0.2.0/aibrix-core-v0.2.0.yaml
kubectl create -f https://github.com/vllm-project/aibrix/releases/download/v0.2.0/aibrix-core-v0.2.0.yaml
Nightly Version
Expand Down
4 changes: 2 additions & 2 deletions docs/source/getting_started/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ Get your kubernetes cluster ready, run following commands to install aibrix comp

.. code-block:: bash
kubectl apply -f https://github.com/vllm-project/aibrix/releases/download/v0.2.0/aibrix-dependency-v0.2.0.yaml
kubectl apply -f https://github.com/vllm-project/aibrix/releases/download/v0.2.0/aibrix-core-v0.2.0.yaml
kubectl create -f https://github.com/vllm-project/aibrix/releases/download/v0.2.0/aibrix-dependency-v0.2.0.yaml
kubectl create -f https://github.com/vllm-project/aibrix/releases/download/v0.2.0/aibrix-core-v0.2.0.yaml
Wait for few minutes and run `kubectl get pods -n aibrix-system` to check pod status util they are ready.

Expand Down

0 comments on commit bce0ec5

Please sign in to comment.