diff --git a/infrastructure/kubernetes/base/components/frontend/frontend-service.yaml b/infrastructure/kubernetes/base/components/frontend/frontend-service.yaml index 11412cc4..80532ac5 100644 --- a/infrastructure/kubernetes/base/components/frontend/frontend-service.yaml +++ b/infrastructure/kubernetes/base/components/frontend/frontend-service.yaml @@ -21,8 +21,8 @@ spec: spec: containers: - name: frontend - image: bakery/dashboard:latest - imagePullPolicy: Always + image: bakery/dashboard + imagePullPolicy: IfNotPresent ports: - containerPort: 3000 name: http @@ -41,17 +41,17 @@ spec: cpu: "500m" livenessProbe: httpGet: - path: / + path: /health port: 3000 - initialDelaySeconds: 60 - timeoutSeconds: 10 + initialDelaySeconds: 15 + timeoutSeconds: 5 periodSeconds: 30 failureThreshold: 3 readinessProbe: httpGet: - path: / + path: /health port: 3000 - initialDelaySeconds: 20 + initialDelaySeconds: 5 timeoutSeconds: 5 periodSeconds: 10 failureThreshold: 3