From 042608d9b513b21e823b86e08c8fd132833fc208 Mon Sep 17 00:00:00 2001 From: Helber Belmiro Date: Thu, 16 Nov 2023 16:37:05 -0300 Subject: [PATCH] Fixed formatting in get_started Signed-off-by: Helber Belmiro --- docs/get_started/README.md | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/docs/get_started/README.md b/docs/get_started/README.md index 1c05095c7..e7b6e4c67 100644 --- a/docs/get_started/README.md +++ b/docs/get_started/README.md @@ -20,17 +20,21 @@ The [Kubernetes CLI (`kubectl`)](https://kubernetes.io/docs/tasks/tools/install- ```bash kind create cluster ``` + 2. Then run: - ```bash - kubectl config get-contexts - ``` - It should list out a list of contexts you have, one of them should be `kind-kind`. Then run: + ```bash + kubectl config get-contexts + ``` + + It should list out a list of contexts you have, one of them should be `kind-kind`. Then run: + + ```bash + kubectl config use-context kind-kind + ``` + + to use this context. - ```bash - kubectl config use-context kind-kind - ``` - to use this context 3. You can then get started with a local deployment of KServe by using _KServe Quick installation script on Kind_: ```bash