Skip to content

Commit 8b61a08

Browse files
committed
prepare for release v3.7.6
1 parent 3be2253 commit 8b61a08

17 files changed

Lines changed: 302 additions & 15 deletions

.github/workflows/lint-test.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,25 @@ jobs:
3434
- name: Run chart-testing (lint)
3535
run: ct lint --config ct.yaml --all
3636

37+
- name: Verify Redis Sentinel values render (helm template)
38+
run: |
39+
chmod +x scripts/verify-redis-sentinel-template.sh
40+
./scripts/verify-redis-sentinel-template.sh
41+
3742
- name: Create kind cluster
3843
uses: helm/kind-action@v1.12.0
3944
if: steps.list-changed.outputs.changed == 'true'
4045

4146
- name: Test main convoy chart installation
4247
if: steps.list-changed.outputs.changed == 'true'
4348
run: |
44-
echo "Testing main convoy chart with root values..."
49+
echo "Testing main convoy chart (Redis Sentinel + Postgres, Kind integration)..."
4550
helm dependency build .
46-
helm install convoy-test . --values values.yaml --timeout 300s --wait --wait-for-jobs --debug
51+
helm install convoy-test . \
52+
--values values.yaml \
53+
--values ci/integration-kind-values.yaml \
54+
--timeout 900s --wait --wait-for-jobs --debug
4755
helm test convoy-test
56+
chmod +x scripts/integration-kind-verify.sh
57+
./scripts/integration-kind-verify.sh
4858
helm uninstall convoy-test

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,3 @@ Session.vim
3535
**/charts/*.tgz
3636

3737
.history
38-
README.md.gotmpl

.helmignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424

2525
# GitHub workflows and CI/CD
2626
.github/
27+
ci/
2728
scripts/
2829

2930
.helmdocsignore

Chart.lock

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,11 @@ dependencies:
55
- name: redis
66
repository: oci://registry-1.docker.io/bitnamicharts
77
version: 17.11.3
8-
digest: sha256:b4b067f4aef7360d36c1d36fb970183aafb7ecae01fbfcd09892a6e277874765
9-
generated: "2025-11-14T17:29:01.591698+01:00"
8+
- name: agent
9+
repository: ""
10+
version: 3.7.6
11+
- name: server
12+
repository: ""
13+
version: 3.7.6
14+
digest: sha256:25afc9b03cd96a3fa18053eedbf24f0a47747536278a093c7918d6a46ddaa9e3
15+
generated: "2026-03-23T21:35:32.093441+01:00"

Chart.yaml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: convoy
33
description: Open Source Webhooks Gateway
44
type: application
55
version: "3.7.6"
6-
appVersion: "v26.1.4"
6+
appVersion: "v26.3.5"
77
keywords:
88
- Webhooks
99
- Kubernetes
@@ -23,3 +23,14 @@ dependencies:
2323
version: 17.11.3
2424
repository: oci://registry-1.docker.io/bitnamicharts
2525
condition: redis.enabled
26+
27+
# Vendored subcharts under charts/agent and charts/server (see charts/ directory).
28+
- name: agent
29+
version: 3.7.6
30+
repository: ""
31+
condition: agent.enabled
32+
33+
- name: server
34+
version: 3.7.6
35+
repository: ""
36+
condition: server.enabled

Makefile

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,10 @@ ct:
44
docs:
55
helm-docs
66

7-
.PHONY: ct docs
7+
test-sentinel-template:
8+
./scripts/verify-redis-sentinel-template.sh
9+
10+
integration-kind-verify:
11+
./scripts/integration-kind-verify.sh
12+
13+
.PHONY: ct docs test-sentinel-template integration-kind-verify

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# convoy
22

3-
![Version: 3.7.5](https://img.shields.io/badge/Version-3.7.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v26.1.4](https://img.shields.io/badge/AppVersion-v26.1.4-informational?style=flat-square)
3+
![Version: 3.7.6](https://img.shields.io/badge/Version-3.7.6-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v26.3.5](https://img.shields.io/badge/AppVersion-v26.3.5-informational?style=flat-square)
44

55
Open Source Webhooks Gateway
66

@@ -152,7 +152,7 @@ helm install convoy .
152152
| global.convoy.sentry_dsn | string | `""` | Sentry DSN |
153153
| global.convoy.sentry_environment | string | `"oss"` | Sentry environment |
154154
| global.convoy.sentry_sample_rate | float | `1` | Sentry sample rate for error sampling (0.0 to 1.0) |
155-
| global.convoy.tag | string | `"v26.1.4"` | Docker image tags for all convoy components |
155+
| global.convoy.tag | string | `"v26.3.5"` | Docker image tags for all convoy components |
156156
| global.convoy.tracer_enabled | bool | `false` | Tracing config for all convoy services |
157157
| global.convoy.tracer_type | string | `"otel"` | Tracing provider type |
158158
| global.externalDatabase.database | string | `"convoy"` | Database name for the external database |

README.md.gotmpl

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
{{ template "chart.header" . }}
2+
{{ template "chart.deprecationWarning" . }}
3+
4+
{{ template "chart.badgesSection" . }}
5+
6+
{{ template "chart.description" . }}
7+
8+
{{ template "chart.homepageLine" . }}
9+
10+
{{ template "chart.maintainersSection" . }}
11+
12+
{{ template "chart.sourcesSection" . }}
13+
14+
{{ template "chart.requirementsSection" . }}
15+
16+
## Installation
17+
18+
### Add the Helm repository
19+
20+
```bash
21+
helm repo add convoy https://frain-dev.github.io/helm-charts
22+
helm repo update
23+
```
24+
25+
### Install the chart
26+
27+
```bash
28+
helm install convoy convoy/convoy
29+
```
30+
31+
### Install with custom values
32+
33+
```bash
34+
helm install convoy convoy/convoy --values values.yaml
35+
```
36+
37+
### Install from local chart
38+
39+
```bash
40+
helm install convoy .
41+
```
42+
43+
{{ template "chart.valuesSection" . }}
44+
45+
{{- if not .SkipVersionFooter }}
46+
{{ template "helm-docs.versionFooter" . }}
47+
{{- end }}

charts/agent/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: agent
33
description: Convoy Agent Chart
44
type: application
55
version: "3.7.6"
6-
appVersion: "v26.1.4"
6+
appVersion: "v26.3.5"
77
maintainers:
88
- name: Convoy Engineering Team
99
email: engineering@getconvoy.io

charts/agent/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ env:
154154
image:
155155
repository: getconvoy/convoy
156156
pullPolicy: IfNotPresent
157-
tag: v26.1.4
157+
tag: v26.3.5
158158

159159
nameOverride: "convoy-agent"
160160
fullNameOverride: "convoy-agent"

0 commit comments

Comments
 (0)