Skip to content
15 changes: 12 additions & 3 deletions k8s/nemoclaw-k8s.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,11 @@ spec:
requests:
memory: "8Gi"
cpu: "2"

# Workspace - runs official NemoClaw installer
ephemeral-storage: "20Gi"
limits:
memory: "16Gi"
cpu: "4"
ephemeral-storage: "40Gi"
- name: workspace
image: node:22
command:
Expand Down Expand Up @@ -98,6 +101,11 @@ spec:
requests:
memory: "4Gi"
cpu: "2"
ephemeral-storage: "4Gi"
limits:
memory: "8Gi"
cpu: "4"
ephemeral-storage: "8Gi"

initContainers:
# Configure Docker daemon for cgroup v2
Expand All @@ -110,7 +118,8 @@ spec:

volumes:
- name: docker-storage
emptyDir: {}
emptyDir:
sizeLimit: "40Gi"
- name: docker-socket
emptyDir: {}
- name: docker-config
Expand Down