# Kind Cluster

1. Download and install kind in your local environment by following [these](https://kind.sigs.k8s.io/docs/user/quick-start/#installation) steps.
2. Create a kind.conf file with the below contents

```yaml
kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4
nodes:
- role: control-plane
  extraPortMappings:
  - containerPort: 30000
    hostPort: 30000
    listenAddress: "127.0.0.1"
    protocol: TCP
  - containerPort: 30001
    hostPort: 30001
    listenAddress: "127.0.0.1"
    protocol: TCP
  - containerPort: 30002
    hostPort: 30002
    listenAddress: "127.0.0.1"
    protocol: TCP
  - containerPort: 30003
    hostPort: 30003
    listenAddress: "127.0.0.1"
    protocol: TCP
  - containerPort: 30004
    hostPort: 30004
    listenAddress: "127.0.0.1"
    protocol: TCP
  - containerPort: 30005
    hostPort: 30005
    listenAddress: "127.0.0.1"
    protocol: TCP
  - containerPort: 30006
    hostPort: 30006
    listenAddress: "127.0.0.1"
    protocol: TCP
  - containerPort: 32000
    hostPort: 32000
    listenAddress: "127.0.0.1"
    protocol: TCP
  - containerPort: 30033
    hostPort: 30033
    listenAddress: "127.0.0.1"
    protocol: TCP

```

3. Create a kind cluster using the kind.conf file

```sh
kind create cluster --name gopaddle --config kind.conf
```

4. Perform [these](https://app.gitbook.com/o/kaNNkk5MWdImsh5Ur4MO/s/5QxXxCob5M5VXQJTryRc/~/changes/7/overview/getting-started/installing-community-edition/helm) steps to install gopaddle helm chart
5. Once gopaddle is installed, access the gopaddle UI by following [these](https://app.gitbook.com/o/kaNNkk5MWdImsh5Ur4MO/s/5QxXxCob5M5VXQJTryRc/~/changes/7/overview/getting-started/installing-community-edition/accessing-gopaddle-ui) steps.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://help.gopaddle.io/overview/installing-community-edition/kind-cluster.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
