Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: remove kind from setup setps #555

Merged
merged 1 commit into from
Sep 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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