From 15779f4f1c4d273f65e35cc40028d8cc774c2f53 Mon Sep 17 00:00:00 2001 From: Helber Belmiro Date: Sun, 26 Nov 2023 12:12:21 -0300 Subject: [PATCH] Fixed formatting in get_started (#319) 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