Skip to content

Commit

Permalink
Merge pull request #192 from one-acre-fund/feature/uptime-wrapper
Browse files Browse the repository at this point in the history
chore: bump n8n chart version to 0.1.51
  • Loading branch information
bisonlou authored Aug 30, 2024
2 parents 6109573 + e40601e commit 50210c1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion charts/n8n/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ type: application
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)

version: 0.1.50
version: 0.1.51

# 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
2 changes: 1 addition & 1 deletion charts/n8n/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# n8n

![Version: 0.1.50](https://img.shields.io/badge/Version-0.1.50-informational?style=flat-square)
![Version: 0.1.51](https://img.shields.io/badge/Version-0.1.51-informational?style=flat-square)

A Helm chart for n8n

Expand Down
7 changes: 2 additions & 5 deletions charts/n8n/templates/tests/test-connection.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,13 @@ spec:
args:
- |
RESPONSE=$(wget -qO- '{{ include "n8n.fullname" . }}:{{ .Values.service.port }}/healthz')
if [ "$RESPONSE" = "$EXPECTED_RESPONSE" ]; then
if [ "$RESPONSE" = '{"status":"ok"}' ]; then
echo "Health check passed."
exit 0
else
echo "Health check failed. Expected '$EXPECTED_RESPONSE' but got '$RESPONSE'."
echo "Health check failed. Expected '{"status":"ok"}' but got '$RESPONSE'."
exit 1
fi
env:
- name: EXPECTED_RESPONSE
value: '{"status":"ok"}'
volumeMounts:
- name: test-scripts
mountPath: /test-scripts
Expand Down

0 comments on commit 50210c1

Please sign in to comment.