> For the complete documentation index, see [llms.txt](https://docs.aurras.hugobyte.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.aurras.hugobyte.com/dependencies/kubernetes/environments/kubernetes-ubuntu.md).

# Ubuntu

### Setup Guide

1. Download the latest stable release of kind (**kind-linux-amd64**) from <https://github.com/kubernetes-sigs/kind/releases>
2. Create a kind-cluster.yaml to configure your cluster with below configuration

```
kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4
nodes:
- role: control-plane
- role: worker
  extraPortMappings:
    - hostPort: 31001
      containerPort: 31001
- role: worker
```

&#x20;   3\. Create the cluster using

```
kind create cluster --config kind-cluster.yaml
```

&#x20;   4\. Confirm if the clusters have been created using

```
kind get clusters
```
