view deploy_ui.yaml @ 16:838eb0223bdb

cp mongo_required
author drewp@bigasterisk.com
date Sun, 16 Apr 2023 03:17:48 -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