Skip to content

Commit

Permalink
Update README.md to add intermediate installation steps (#292)
Browse files Browse the repository at this point in the history
Update README.md

added steps to create kind cluster

Signed-off-by: Nidhish Kamath <113868784+nkamath5@users.noreply.github.com>
  • Loading branch information
nkamath5 authored Oct 5, 2023
1 parent 1569d33 commit e64ed94
Showing 1 changed file with 21 additions and 6 deletions.
27 changes: 21 additions & 6 deletions docs/get_started/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

0 comments on commit e64ed94

Please sign in to comment.