view deploy_ui.yaml @ 6:ccfea3625cf6

render thumbs and display them (no video player at all atm)
author drewp@bigasterisk.com
date Sun, 09 Apr 2023 18:02:25 -0700
parents c8a41359505c
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