diff --git a/charts/frontend/Chart.yaml b/charts/frontend/Chart.yaml index 6652c559..a81d351c 100644 --- a/charts/frontend/Chart.yaml +++ b/charts/frontend/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: developer-portal-frontend description: A Helm chart for deploying the Diamond developer portal backend type: application -version: 0.1.0 +version: 0.1.1 appVersion: 0.0.26 dependencies: - name: common diff --git a/charts/frontend/templates/deployment.yaml b/charts/frontend/templates/deployment.yaml index b2adf72c..4de514bc 100644 --- a/charts/frontend/templates/deployment.yaml +++ b/charts/frontend/templates/deployment.yaml @@ -36,3 +36,15 @@ spec: ports: - name: http-serve containerPort: 80 + livenessProbe: + httpGet: + port: 80 + path: /healthcheck + initialDelaySeconds: 10 + periodSeconds: 10 + readinessProbe: + httpGet: + port: 80 + path: /healthcheck + initialDelaySeconds: 10 + periodSeconds: 10