OpenHands/kind/manifests/deployment.yaml
brettstewart 54af9ff3fe
feat(runtime): add kubernetes support (#8814)
Co-authored-by: Corey White <corey.white@ziffdavis.com>
Co-authored-by: luke_schulz <luke.schulz@ziffmedia.com>
2025-06-18 21:25:50 +00:00

20 lines
327 B
YAML

---
apiVersion: apps/v1
kind: Deployment
metadata:
name: ubuntu-dev
spec:
replicas: 1
selector:
matchLabels:
app: ubuntu-dev
template:
metadata:
labels:
app: ubuntu-dev
spec:
containers:
- name: ubuntu
image: ubuntu:22.04
command: ["sleep", "infinity"]