Skip to content

Commit

Permalink
Fixed bqd probes for test container
Browse files Browse the repository at this point in the history
  • Loading branch information
Kévin ZGRZENDEK committed Nov 25, 2024
1 parent 5da225a commit c4f69cf
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions charts/redcap/templates/tests/test-connection.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,16 @@ spec:
image: busybox:1.37-glibc
command: ['wget']
args: ['{{ include "redcap.fullname" . }}:{{ .Values.service.redcap.port }}']
livenessProbe:
httpGet:
path: /
port: http
readinessProbe:
httpGet:
path: /
port: http
tcpSocket:
port: {{ ternary 1443 1080 .Values.httpd.tls.enabled }}
initialDelaySeconds: 5
periodSeconds: 5
livenessProbe:
tcpSocket:
port: {{ ternary 1443 1080 .Values.httpd.tls.enabled }}
initialDelaySeconds: 5
periodSeconds: 5
resources:
limits:
cpu: 100m
Expand Down

0 comments on commit c4f69cf

Please sign in to comment.