apiVersion: apps/v1 kind: Deployment metadata: name: goal-service namespace: team1tier-healthsync-ns spec: revisionHistoryLimit: 3 replicas: 2 selector: matchLabels: app: goal-service template: metadata: labels: app: goal-service spec: imagePullSecrets: - name: acr-secret containers: - name: goal-service image: acrhealthsync01.azurecr.io/team1tier/goal-service:1.0.8 imagePullPolicy: Always ports: - containerPort: 8084 envFrom: - configMapRef: name: common-config - configMapRef: name: goal-config - configMapRef: name: redis-config - secretRef: name: common-secret - secretRef: name: database-secret - secretRef: name: redis-secret - secretRef: name: goal-db-secret resources: requests: cpu: 256m memory: 256Mi limits: cpu: 1024m memory: 1024Mi # startupProbe: # httpGet: # path: /actuator/health # port: 8084 # failureThreshold: 30 # periodSeconds: 10 # livenessProbe: # httpGet: # path: /actuator/health # port: 8084 # initialDelaySeconds: 60 # periodSeconds: 15 # readinessProbe: # httpGet: # path: /actuator/health # port: 8084 # initialDelaySeconds: 10 # periodSeconds: 5