Would you be interested in merging changes that allow nanoclaw to run on k8s? #302
johnthompson-ybor
started this conversation in
Ideas
Replies: 1 comment
-
|
Thanks @johnthompson-ybor for initiating the discussion, I am also looking at ways for supporting nanoclaw in k8s. Do you think instead of jobs something like agent-sandbox can be used instead of jobs? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I've been experimenting with running NanoClaw on Kubernetes instead of macOS/Docker Desktop, and wanted to see if there's interest in upstreaming some form of this.
The core idea: replace the local runtime (WhatsApp, Apple Containers, filesystem IPC) with K8s-native equivalents, so NanoClaw can be deployed as a workload on a cluster.
envFromThe orchestrator runs as a Deployment. When a message arrives on the webhook, it creates a Job. The agent pod connects back via gRPC, receives the prompt, runs Claude, streams results back. Everything is externally configurable through env vars and ConfigMaps.
This makes it possible to run fleets of agents on shared infrastructure with proper RBAC, network policies, and observability ... "
I don't really want to turn this into a general orchestrator or job runner, but this seems like the bare minimum you would have to do to get this running on k8s.
Beta Was this translation helpful? Give feedback.
All reactions