mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
Fix helm health Probes if tls enabled (#8922)
This commit is contained in:
parent
f5ea13a800
commit
612c86531b
1 changed files with 6 additions and 0 deletions
|
|
@ -269,10 +269,16 @@ spec:
|
|||
httpGet:
|
||||
path: /healthz
|
||||
port: {{ .Values.fleet.listenPort }}
|
||||
{{- if .Values.fleet.tls.enabled }}
|
||||
scheme: HTTPS
|
||||
{{- end }}
|
||||
readinessProbe:
|
||||
httpGet:
|
||||
path: /healthz
|
||||
port: {{ .Values.fleet.listenPort }}
|
||||
{{- if .Values.fleet.tls.enabled }}
|
||||
scheme: HTTPS
|
||||
{{- end }}
|
||||
{{- if or (.Values.fleet.tls.enabled) (.Values.mysql.tls.enabled) (eq .Values.osquery.logging.statusPlugin "filesystem") (eq .Values.osquery.logging.resultPlugin "filesystem") }}
|
||||
volumeMounts:
|
||||
- name: tmp
|
||||
|
|
|
|||
Loading…
Reference in a new issue