# Introduction

This section contains comprehensive documentation for deploying and managing OpenClaw on Cloudeka Kubernetes infrastructure.

## Quick Start

1. Ensure prerequisites are met, you can see [Prerequisites](https://docs.cloudeka.ai/reference/how-to-deployment-openclaw-on-cloudeka/prerequisites).
2. Create namespace

```bash
kubectl create namespace openclaw
```

3. Create secrets

```bash
kubectl create secret generic openclaw-env-secret -n openclaw \
  --from-literal=DEKALLM_API_KEY=xxx \
  --from-literal=OPENCLAW_GATEWAY_TOKEN=yyy
```

4. Install

```bash
helm install openclaw ./charts/openclaw -n openclaw -f charts/openclaw/values.yaml
```

5. Port forward

```bash
kubectl port-forward -n openclaw svc/openclaw 18789:18789
```

Open <http://localhost:18789> and enter your gateway token.

## Architecture

<figure><img src="https://2882153758-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fi9YWb69HFXLHYlXffReU%2Fuploads%2FjBLEa7tDXh0f5EyPyYDb%2Fimage.png?alt=media&#x26;token=a79a38dd-b21d-4b85-a668-db7f763f8ade" alt=""><figcaption></figcaption></figure>

OpenClaw runs as a single-pod deployment with:

* **Main container**: OpenClaw Gateway (port 18789)
* **Chromium sidecar**: Headless browser for automation (port 9222)
* **Init containers**: Config merge and skill installation
* **PVC**: Persistent storage for workspace, sessions, and dependencies

## Multi-Agent Support <a href="#nwfvdzpvxwso" id="nwfvdzpvxwso"></a>

OpenClaw supports multiple isolated agents with:

* Separate workspaces and skills
* Per-agent tool restrictions
* Message routing via bindings

## Cloudeka-Specific Configuration <a href="#zlwlshooelee" id="zlwlshooelee"></a>

| Setting        | Value                                                      |
| -------------- | ---------------------------------------------------------- |
| Image Registry | <http://dekaregistry.cloudeka.id/cloudeka-system/openclaw> |
| LLM Provider   | <https://dekallm.cloudeka.ai/v1>                           |
| Model          | dekallm/zai/glm-4.7-fp8                                    |

## External Resources <a href="#yybsexmpfxrq" id="yybsexmpfxrq"></a>

* [OpenClaw Documentation](https://docs.openclaw.ai)
* [ClawHub Skills Repository](https://clawhub.com)
* [OpenClaw GitHub](https://github.com/openclaw/openclaw)
