# 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](/guidance-for-individual/reference/how-to-deployment-openclaw-on-cloudeka/prerequisites.md).
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="/files/iOmfbWvAnMSEs23UjoHF" 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)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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://docs.cloudeka.ai/guidance-for-individual/reference/how-to-deployment-openclaw-on-cloudeka/introduction.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.
