diff --git a/templates/deployment.yaml b/templates/deployment.yaml index abc8cd1..94173a9 100644 --- a/templates/deployment.yaml +++ b/templates/deployment.yaml @@ -51,15 +51,18 @@ spec: secretKeyRef: name: cb-ingestion-token key: INGESTION_API_TOKEN - livenessProbe: - exec: - command: - - /bin/bash - - -c - - find /tmp -type f -mmin -40 | grep liveness.txt - initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} - failureThreshold: {{ .Values.liveness.failureThreshold }} - periodSeconds: {{ .Values.liveness.periodSeconds }} + ## + ## Disabled as application does not expose any application endpoint. + ## + # livenessProbe: + # exec: + # command: + # - /bin/bash + # - -c + # - find /tmp -type f -mmin -40 | grep liveness.txt + # initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} + # failureThreshold: {{ .Values.liveness.failureThreshold }} + # periodSeconds: {{ .Values.liveness.periodSeconds }} resources: {{- toYaml .Values.resources | nindent 12 }} {{- with .Values.volumeMounts }}