diff --git a/docs/get_started/README.md b/docs/get_started/README.md index e671d391c..1c05095c7 100644 --- a/docs/get_started/README.md +++ b/docs/get_started/README.md @@ -15,10 +15,25 @@ The [Kubernetes CLI (`kubectl`)](https://kubernetes.io/docs/tasks/tools/install- ## Install the KServe "Quickstart" environment - -You can get started with a local deployment of KServe by using _KServe Quick installation script on Kind_: - -```bash -curl -s "https://raw.githubusercontent.com/kserve/kserve/release-0.11/hack/quick_install.sh" | bash -``` +1. After having kind installed, create a `kind` cluster with: + + ```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 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 + curl -s "https://raw.githubusercontent.com/kserve/kserve/release-0.11/hack/quick_install.sh" | bash + ```