Skip to content

Commit

Permalink
[castai-db-optimizer] enable readiness probe by default (#738)
Browse files Browse the repository at this point in the history
  • Loading branch information
viktorasm authored Feb 27, 2025
1 parent 2df7402 commit 975c1be
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/castai-db-optimizer/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ apiVersion: v2
name: castai-db-optimizer
description: CAST AI database cache deployment.
type: application
version: 0.17.0
version: 0.17.1
2 changes: 1 addition & 1 deletion charts/castai-db-optimizer/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# castai-db-optimizer

![Version: 0.17.0](https://img.shields.io/badge/Version-0.17.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
![Version: 0.17.1](https://img.shields.io/badge/Version-0.17.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)

CAST AI database cache deployment.

Expand Down
3 changes: 2 additions & 1 deletion charts/castai-db-optimizer/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,8 @@ spec:
- containerPort: {{$endpoint.port}}
protocol: TCP
{{- end }}
{{- if .Values.proxy.readinessProbeEnabled }}
{{ $readinessProbeEnabled := not (eq (toString .Values.proxy.readinessProbeEnabled) "false")}}
{{- if $readinessProbeEnabled }}
readinessProbe:
periodSeconds: 3
exec:
Expand Down

0 comments on commit 975c1be

Please sign in to comment.