apiVersion: apps/v1 kind: Deployment metadata: name: order labels: app: order spec: replicas: 1 selector: matchLabels: app: order template: metadata: labels: app: order spec: containers: - name: order image: ghcr.io/acmexii/order-liveness:latest ports: - containerPort: 8080 livenessProbe: httpGet: path: '/actuator/health' port: 8080 initialDelaySeconds: 15 timeoutSeconds: 2 successThreshold: 1 periodSeconds: 5 failureThreshold: 3