OpenClaw Kubernetes Operator with Embedded Ollama Support

OpenClaw Kubernetes Operator with Embedded Ollama
A community member has created an OpenClaw Kubernetes operator that addresses missing functionality like internal binaries and Ollama integration. The operator enables running Ollama as a pod in the same shared namespace at <ollama-svc>:11434, which the creator found helpful when using Ollama cloud for agents.
Setup Instructions
To try this setup, you need a Kubernetes cluster (can be created with kind/minikube). From the cloned repository:
- Install the operator:
kubectl apply -f dist/install.yaml - Check installation in the
openclaw-operator-systemnamespace - Install the agent manifest:
kubectl apply -f config/samples/openclaw_v1alpha1_openclawinstance.yaml - Wait for everything to run, then do the first onboard:
kubectl exec -it my-agent-0 -c cli -- openclaw onboard
Ollama Configuration
Ollama runs as a separate StatefulSet. The gateway is pre-configured to communicate with it at my-agent-ollama:11434. For cloud version usage:
- Sign in:
kubectl exec -it my-agent-ollama-0 -- ollama signin - Pull a cloud model:
kubectl exec -it my-agent-ollama-0 -- ollama pull minimax-m2.7:cloud
Dashboard Access
To access the dashboard locally:
- Port-forward the gateway service:
kubectl port-forward svc/my-agent 18789:18789 - Get the authentication token from the CLI sidecar:
kubectl exec -it my-agent-0 -c cli -- openclaw dashboard - This prints a URL with token (format:
...localhost:18789/dashboard?token=...) that you can access
The creator describes this as a project for practicing Kubernetes operators, based on past knowledge and practices. They note there's room for improvement and are seeking DevOps or Kubernetes contributors for maintenance.
📖 Read the full source: r/openclaw
👀 See Also

VidLens MCP Server: Persistent YouTube Knowledge Base for Claude
VidLens is a free, open-source MCP server that indexes YouTube content locally with semantic embeddings, treating videos as a persistent knowledge base rather than extracting temporary transcripts. It provides 41 tools across 10 modules for searching, analyzing, and retrieving video content.

Banker Creates Credit Due Diligence Tool with 31 AI Prompts Using Only Claude
A banker with 17 years of MSME credit underwriting experience in India has open-sourced 31 AI prompts that transform a visiting card into a full credit due diligence report, compressing a 3-4 week process to 30 minutes. The tool was built entirely through conversation with Claude, without writing any code.

Radicle 1.8.0 Released: Decentralized Peer-to-Peer Code Forge Built on Git
Radicle 1.8.0 ships a sovereign, peer-to-peer code forge on Git with CLI, web UI, and desktop client. Repos replicate across peers using NoiseXK and a custom gossip protocol – no central server.

nah: A context-aware permission guard for Claude Code
nah is a PreToolUse hook that intercepts every tool call in Claude Code, classifying commands by action type like filesystem_read or git_history_rewrite and applying policies based on context. It runs a deterministic classifier in milliseconds with optional LLM escalation for ambiguous cases.