Skip to content

Commit

Permalink
servers: fix separate health check port
Browse files Browse the repository at this point in the history
Being able to use the port name would have been too easy ...
  • Loading branch information
rcarpa committed Nov 29, 2023
1 parent 8ce8b30 commit 9c7b478
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/rucio-server/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: rucio-server
version: 33.0.0
version: 33.0.1
apiVersion: v1
description: A Helm chart to deploy servers for Rucio
keywords:
Expand Down
7 changes: 6 additions & 1 deletion charts/rucio-server/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -194,9 +194,11 @@ spec:
readinessProbe:
httpGet:
path: /ping
port: health
{{- if .Values.useSSL }}
port: 444
scheme: HTTPS
{{- else }}
port: 81
{{- end }}
initialDelaySeconds: {{ .Values.readinessProbe.initialDelaySeconds }}
periodSeconds: {{ .Values.readinessProbe.periodSeconds }}
Expand All @@ -206,7 +208,10 @@ spec:
path: /ping
port: health
{{- if .Values.useSSL }}
port: 444
scheme: HTTPS
{{- else }}
port: 81
{{- end }}
initialDelaySeconds: {{ .Values.livenessProbe.initialDelaySeconds }}
periodSeconds: {{ .Values.livenessProbe.periodSeconds }}
Expand Down

0 comments on commit 9c7b478

Please sign in to comment.