apiVersion: apps/v1 kind: Deployment metadata: name: promiscuity-inventory labels: app: promiscuity-inventory spec: replicas: 2 selector: matchLabels: app: promiscuity-inventory template: metadata: labels: app: promiscuity-inventory spec: containers: - name: promiscuity-inventory image: promiscuity-inventory:latest imagePullPolicy: IfNotPresent ports: - containerPort: 5003 readinessProbe: httpGet: path: /healthz port: 5003 initialDelaySeconds: 5 periodSeconds: 10