Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
dynamo
Commits
35c56065
Unverified
Commit
35c56065
authored
Jul 11, 2025
by
julienmancuso
Committed by
GitHub
Jul 11, 2025
Browse files
feat: add liveness/readiness probes in graph helm chart (#1888)
parent
d975761b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
0 deletions
+31
-0
deploy/helm/chart/templates/deployment.yaml
deploy/helm/chart/templates/deployment.yaml
+31
-0
No files found.
deploy/helm/chart/templates/deployment.yaml
View file @
35c56065
...
...
@@ -79,4 +79,35 @@ spec:
-
name
:
NATS_SERVER
value
:
"
{{
$.Values.natsAddr
}}"
{{
- end
}}
ports
:
-
name
:
health
containerPort
:
{{
$.Values.healthPort | default 5000
}}
livenessProbe
:
{{
- if $serviceSpec.extraPodSpec.mainContainer.livenessProbe
}}
{{
$serviceSpec.extraPodSpec.mainContainer.livenessProbe | toYaml | nindent 10
}}
{{
- else
}}
initialDelaySeconds
:
60
periodSeconds
:
60
timeoutSeconds
:
5
failureThreshold
:
10
successThreshold
:
1
httpGet
:
path
:
/healthz
port
:
health
scheme
:
HTTP
{{
- end
}}
readinessProbe
:
{{
- if $serviceSpec.extraPodSpec.mainContainer.readinessProbe
}}
{{
$serviceSpec.extraPodSpec.mainContainer.readinessProbe | toYaml | nindent 10
}}
{{
- else
}}
initialDelaySeconds
:
60
periodSeconds
:
60
timeoutSeconds
:
5
failureThreshold
:
10
successThreshold
:
1
httpGet
:
path
:
/readyz
port
:
health
scheme
:
HTTP
{{
- end
}}
{{
- end
}}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment