Skip to content

Commit

Permalink
⚡ - Otel servicegraph (#163)
Browse files Browse the repository at this point in the history
Co-authored-by: Diego Luisi <[email protected]>
  • Loading branch information
diegoluisi and Diego Luisi authored May 22, 2024
1 parent 880f6bb commit 12a21de
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/devxp-app/templates/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ spec:
- name: {{ .Values.monitoring.actuator.port.name }}
containerPort: {{ .Values.monitoring.actuator.port.targetPort }}
{{- end }}
resources: {{ toYaml .Values.resources | nindent 12 }}
{{- if not .Values.probe.enabled }}
livenessProbe: {{ toYaml .Values.livenessProbe | nindent 12 }}
readinessProbe: {{ toYaml .Values.readinessProbe | nindent 12 }}
{{- end }}
resources: {{ toYaml .Values.resources | nindent 12 }}
volumeMounts: {{ toYaml (default list .Values.volumeMounts) | nindent 12 }}
nodeSelector: {{ toYaml (default dict .Values.nodeSelector) | nindent 8 }}
affinity: {{ toYaml (default dict .Values.affinity) | nindent 8 }}
Expand Down
3 changes: 3 additions & 0 deletions charts/devxp-app/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,9 @@ probe:
# --probe.enabled Enable liveness and readiness probe
enabled: true

## Health Check
# livenessProbe -- livenessprobe indicates whether the Container is running.
# @default -- object
livenessProbe:
httpGet:
path: /health-check/liveness
Expand Down

0 comments on commit 12a21de

Please sign in to comment.