Mercurial > code > home > repos > video
view deploy_ui.yaml @ 4:c8a41359505c
server provides video listing from disk
author | drewp@bigasterisk.com |
---|---|
date | Sat, 25 Mar 2023 16:01:56 -0700 |
parents | 78c1a2983010 |
children | 9b43b7596633 |
line wrap: on
line source
apiVersion: apps/v1 kind: Deployment metadata: name: video spec: replicas: 1 selector: matchLabels: app: video template: metadata: labels: app: video annotations: { prometheus.io/scrape: "false" } spec: containers: - name: vite image: bang5:5000/video_image command: - pnpx - vite ports: - containerPort: 8002 --- apiVersion: v1 kind: Service metadata: name: video spec: ports: - { port: 8002, targetPort: 8002, name: vite } selector: app: video