From 31c14b94732abad9d807ae90f1e2905c74ff4ea3 Mon Sep 17 00:00:00 2001 From: jolfr Date: Tue, 25 Feb 2025 20:07:22 -0500 Subject: [PATCH] fix(docs): changed to kubectl create to prevent error seen in Issue #743 Signed-off-by: jolfr --- docs/source/getting_started/installation/installation.rst | 4 ++-- docs/source/getting_started/quickstart.rst | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/source/getting_started/installation/installation.rst b/docs/source/getting_started/installation/installation.rst index 1179b849..8c93c93b 100644 --- a/docs/source/getting_started/installation/installation.rst +++ b/docs/source/getting_started/installation/installation.rst @@ -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 diff --git a/docs/source/getting_started/quickstart.rst b/docs/source/getting_started/quickstart.rst index f693374c..2122310b 100644 --- a/docs/source/getting_started/quickstart.rst +++ b/docs/source/getting_started/quickstart.rst @@ -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.