--- # ----------------------------------------------------------------------- # DEPLOYMENTS # ----------------------------------------------------------------------- apiVersion: apps/v1 kind: Deployment metadata: name: ntr-cv spec: replicas: 1 selector: matchLabels: app: ntr-cv template: metadata: labels: app: ntr-cv spec: containers: - name: ntr-cv image: registry.strix.systems/ntr-cv imagePullPolicy: Always ports: - containerPort: 8080 --- # ----------------------------------------------------------------------- # SERVICES # ----------------------------------------------------------------------- --- apiVersion: v1 kind: Service metadata: name: ntr-cv spec: selector: app: ntr-cv ports: - port: 8080