Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update healthcheck path #56

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions charts/blockscout-stack/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
# ChangeLog
## 1.9.3

### Fix

- Update health-check path

## 1.9.2

### Fix
Expand Down
2 changes: 1 addition & 1 deletion charts/blockscout-stack/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 1.9.2
version: 1.9.3

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
4 changes: 2 additions & 2 deletions charts/blockscout-stack/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ blockscout:
##
livenessProbe:
enabled: true
path: /api/v1/health/liveness
path: /api/health/liveness
params:
initialDelaySeconds: 100
periodSeconds: 100
Expand All @@ -142,7 +142,7 @@ blockscout:
##
readinessProbe:
enabled: true
path: /api/v1/health/readiness
path: /api/health/readiness
params:
initialDelaySeconds: 60
periodSeconds: 10
Expand Down