apiVersion: apps/v1 kind: Deployment metadata: name: analytics-service namespace: kt-event-marketing labels: app: analytics-service spec: replicas: 1 selector: matchLabels: app: analytics-service template: metadata: labels: app: analytics-service spec: imagePullSecrets: - name: kt-event-marketing containers: - name: analytics-service image: acrdigitalgarage01.azurecr.io/kt-event-marketing/analytics-service:latest imagePullPolicy: Always ports: - containerPort: 8086 name: http envFrom: - configMapRef: name: cm-common - configMapRef: name: cm-analytics-service - secretRef: name: secret-common - secretRef: name: secret-analytics-service resources: requests: cpu: "256m" memory: "256Mi" limits: cpu: "1024m" memory: "1024Mi" startupProbe: httpGet: path: /api/v1/analytics/actuator/health/liveness port: 8086 initialDelaySeconds: 60 periodSeconds: 10 failureThreshold: 30 livenessProbe: httpGet: path: /api/v1/analytics/actuator/health/liveness port: 8086 initialDelaySeconds: 0 periodSeconds: 10 failureThreshold: 3 readinessProbe: httpGet: path: /api/v1/analytics/actuator/health/readiness port: 8086 initialDelaySeconds: 0 periodSeconds: 10 failureThreshold: 3