From 1d339af1b770e8a383acb36666caba5226970267 Mon Sep 17 00:00:00 2001 From: Phil Weir Date: Fri, 7 Jun 2024 18:41:22 +0100 Subject: [PATCH] fix: remove liveness and readiness from api --- archesproject/Chart.yaml | 2 +- archesproject/templates/deployment-api.yaml | 24 ++++++++++----------- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/archesproject/Chart.yaml b/archesproject/Chart.yaml index 4c59cd9..2903d79 100644 --- a/archesproject/Chart.yaml +++ b/archesproject/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 description: An initial Helm chart for archesproject.org software (unofficial) name: archesproject type: application -version: 0.0.9 +version: 0.0.10 appVersion: "7.5.1" keywords: - arches diff --git a/archesproject/templates/deployment-api.yaml b/archesproject/templates/deployment-api.yaml index f552d2b..5966202 100644 --- a/archesproject/templates/deployment-api.yaml +++ b/archesproject/templates/deployment-api.yaml @@ -41,18 +41,18 @@ spec: - name: http containerPort: 8000 protocol: TCP - livenessProbe: - httpGet: - path: / - port: http - timeoutSeconds: 5 - initialDelaySeconds: {{ .Values.api.livenessProbe.initialDelaySeconds }} - readinessProbe: - httpGet: - path: / - port: http - timeoutSeconds: 5 - initialDelaySeconds: {{ .Values.api.readinessProbe.initialDelaySeconds }} + #livenessProbe: + # httpGet: + # path: / + # port: http + # timeoutSeconds: 5 + # initialDelaySeconds: {{ .Values.api.livenessProbe.initialDelaySeconds }} + #readinessProbe: + # httpGet: + # path: / + # port: http + # timeoutSeconds: 5 + # initialDelaySeconds: {{ .Values.api.readinessProbe.initialDelaySeconds }} {{- if or .Values.mappingJsonConfigMap .Values.mappingJson }} volumeMounts: - name: mapping-file