Skip to content

Commit

Permalink
remove kind from setup setps (#555)
Browse files Browse the repository at this point in the history
  • Loading branch information
Anmol1696 committed Sep 6, 2024
1 parent b7f7ea9 commit ad6e01a
Showing 1 changed file with 1 addition and 28 deletions.
29 changes: 1 addition & 28 deletions docs/pages/get-started/step-2.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ By the end of this tutorial you should be able to run `kubectl get nodes` and se

Please **follow any one of the following** sections to setup a Kubernetes cluster.

## 2.1.1) Recommended: Setup with Docker Desktop
## 2.1) Setup with Docker Desktop
Docker Desktop includes a standalone Kubernetes server and client, as well as Docker CLI integration that runs on your machine.

### Enable kubernetes
Expand All @@ -31,33 +31,6 @@ kubectl config use-context docker-desktop

Detailed Reference: https://docs.docker.com/desktop/kubernetes/

## 2.1.2) Alternative: Setup with Kind Cluster

### Install Kind
Follow the steps in the official documentation to install kind: https://kind.sigs.k8s.io/docs/user/quick-start/

Make sure kind is installed
```bash
kind version
#
# kind v0.18.0 go1.20.2 linux/amd64
```

Make sure docker is running, and you have access to it.
```bash
docker ps
```

### Create kind cluster
Run
```bash
kind create cluster --name starship
```

Note: Kind will create an entry in the kubeconfig file and set the context to the new cluster.

Detailed Reference: https://kind.sigs.k8s.io/docs/user/quick-start/#creating-a-cluster

## 2.2) Check Access to kubernetes

Once you are connected to a kubernetes cluster, you should be able to run the following command and see a list of nodes.
Expand Down

0 comments on commit ad6e01a

Please sign in to comment.