github.com/tilt-dev/tilt@v0.33.15-0.20240515162809-0a22ed45d8a0/integration/same_img_multi_container/sameimg.yaml (about) 1 apiVersion: apps/v1 2 kind: Deployment 3 metadata: 4 name: sameimg 5 namespace: tilt-integration 6 labels: 7 app: sameimg 8 spec: 9 selector: 10 matchLabels: 11 app: sameimg 12 template: 13 metadata: 14 labels: 15 app: sameimg 16 spec: 17 containers: 18 - name: c1 19 image: sameimg 20 command: ["/src/start.sh", "/src/main.sh"] 21 args: ["8000"] 22 ports: 23 - containerPort: 8000 24 resources: 25 requests: 26 cpu: "10m" 27 - name: c2 28 image: sameimg 29 command: ["/src/start.sh", "/src/main.sh"] 30 args: ["8001"] 31 ports: 32 - containerPort: 8001 33 resources: 34 requests: 35 cpu: "10m"