Skip to content

Commit

Permalink
fix: remove liveness and readiness from api
Browse files Browse the repository at this point in the history
  • Loading branch information
philtweir committed Jun 7, 2024
1 parent ea3a467 commit 1d339af
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion archesproject/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
24 changes: 12 additions & 12 deletions archesproject/templates/deployment-api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1d339af

Please sign in to comment.