mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 05:48:36 +08:00
Co-authored-by: Corey White <corey.white@ziffdavis.com> Co-authored-by: luke_schulz <luke.schulz@ziffmedia.com>
20 lines
327 B
YAML
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"]
|