Skip to content

Commit

Permalink
Fix manager probe scheme 3.
Browse files Browse the repository at this point in the history
- Fix endpoint
  • Loading branch information
NeuronAddict committed Dec 8, 2023
1 parent fc586fb commit 674f5e6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions charts/core/templates/manager-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ spec:
{{- if .Values.manager.probes.enabled }}
startupProbe:
httpGet:
path: /version
path: /
port: 8443
{{- if .Values.manager.env.ssl }}
scheme: HTTPS
Expand All @@ -130,7 +130,7 @@ spec:
failureThreshold: {{ .Values.manager.probes.startupFailureThreshold | default 30 }}
livenessProbe:
httpGet:
path: /version
path: /
port: 8443
{{- if .Values.manager.env.ssl }}
scheme: HTTPS
Expand All @@ -143,7 +143,7 @@ spec:
failureThreshold: 3
readinessProbe:
httpGet:
path: /version
path: /
port: 8443
{{- if .Values.manager.env.ssl }}
scheme: HTTPS
Expand Down

0 comments on commit 674f5e6

Please sign in to comment.