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