Skip to content

Commit

Permalink
Merge pull request #95 from rheyser/main
Browse files Browse the repository at this point in the history
feat: optional readiness probe configuration
  • Loading branch information
jkerry authored Nov 8, 2024
2 parents ef96cbf + 75b8d8a commit acfa445
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,9 @@ spec:
{{- end }}
readinessProbe:
httpGet:
path: /_health_check
path: {{ default "/_health_check" .values.tfe.readinessProbePath }}
port: {{ .Values.tfe.privateHttpPort }}
scheme: HTTP
scheme: {{ default "HTTP" .values.tfe.readinessProbeScheme }}
resources:
{{- toYaml .Values.resources | nindent 12 }}
volumeMounts:
Expand Down

0 comments on commit acfa445

Please sign in to comment.