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