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
Claudy: A native macOS wrapper for Claude Code with multi-session, auto account switching, and draft commits
Claudy is a native macOS app built with SwiftUI + SwiftData that wraps Claude Code, adding multi-session management, automatic account switching on rate limits, draft commits for mid-session checkpoints, and a marketplace for Skills, MCPs, and Commands.

HolyCode: Docker Container for Persistent Claude AI Coding Environments
HolyCode is a Docker container that maintains AI coding environment state across machine switches and rebuilds. It includes 30+ preinstalled tools, browser automation with Chromium + xvfb + Playwright, and preserves context in ./data/opencode.

Lucas Gerads demonstrates MCP servers for oscilloscope and SPICE simulator integration with Claude Code
Lucas Gerads built MCP servers for his LeCroy oscilloscope and SPICE simulator, enabling Claude Code to validate SPICE circuits and models, handle embedded programming, and automate data analysis tasks like time axis normalization and data alignment.

Tangent: Chrome Extension for Branching Claude Conversations
A free, open-source extension that lets you open side threads on Claude without losing your place.