Mercurial > code > home > repos > video
view deploy_ui.yaml @ 22:ff73b95fc72f
frontend cleanups and improvements. this commit contains some future work too
author | drewp@bigasterisk.com |
---|---|
date | Mon, 17 Apr 2023 13:33:05 -0700 |
parents | 9b43b7596633 |
children | bf860a23d0c1 |
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: - node_modules/.bin/vite - --debug ports: - containerPort: 8002 --- apiVersion: v1 kind: Service metadata: name: video spec: ports: - { port: 8002, targetPort: 8002, name: vite } selector: app: video