apiVersion: apps/v1 kind: Deployment metadata: name: nxtgauge-video-editors namespace: nxtgauge labels: app: nxtgauge-video-editors spec: replicas: 1 selector: matchLabels: app: nxtgauge-video-editors template: metadata: labels: app: nxtgauge-video-editors spec: containers: - name: video-editors image: ghcr.io/traceworks2023/nxtgauge-backend imagePullPolicy: Always ports: - containerPort: 50059 name: grpc env: - name: APP value: "professionals" - name: PROFESSIONAL_SERVICE_CATEGORY value: "video_editor" - name: PROFESSIONALS_PORT value: "50059" envFrom: - configMapRef: name: nxtgauge-backend-config - secretRef: name: nxtgauge-backend-secrets readinessProbe: tcpSocket: port: 50059 initialDelaySeconds: 5 periodSeconds: 10 livenessProbe: tcpSocket: port: 50059 initialDelaySeconds: 15 periodSeconds: 20