@@ -28,6 +28,12 @@ helm install my-airbroke icoretech/airbroke
2828
2929Please remember to set at least the ` database.url ` and ` database.migrations_url ` values. Continue reading for further details.
3030
31+ ## Breaking changes in 2.0.0
32+
33+ - ` web.image ` was removed; use ` web.imageRepository ` and optional ` web.imageTag `
34+ - Airbroke auth examples now use Better Auth env names: ` BETTER_AUTH_SECRET ` and ` BETTER_AUTH_URL `
35+ - Releases still passing ` NEXTAUTH_SECRET ` or ` NEXTAUTH_URL ` via ` web.extraEnvs ` now fail template rendering on purpose
36+
3137## Database
3238
3339The ` database.url ` and ` database.migrations_url ` values must be set to the connection string of your PostgreSQL database.
@@ -76,7 +82,6 @@ The following table lists the configurable parameters of the Airbroke chart and
7682| web.hpa.maxReplicas | int | ` 10 ` | |
7783| web.hpa.memory | string | ` nil ` | |
7884| web.hpa.requests | string | ` nil ` | |
79- | web.image | string | ` "" ` | |
8085| web.imagePullPolicy | string | ` "IfNotPresent" ` | |
8186| web.imagePullSecrets | string | ` "" ` | |
8287| web.imageRepository | string | ` "ghcr.io/icoretech/airbroke" ` | |
@@ -151,7 +156,7 @@ spec:
151156 chart :
152157 spec :
153158 chart : airbroke
154- version : " >= 1.1.3 "
159+ version : " >= 2.0.0 "
155160 sourceRef :
156161 kind : HelmRepository
157162 name : icoretech
@@ -169,7 +174,7 @@ spec:
169174 migrations_url : ' postgresql://xxxx:xxxx@postgres-postgresql.postgres.svc.cluster.local:5432/airbroke_production?schema=public'
170175 web :
171176 imageRepository : ghcr.io/icoretech/airbroke
172- imageTag : " 1.1.22 " # {"$imagepolicy": "flux-system:airbroke:tag"}
177+ imageTag : " 1.2.0 " # {"$imagepolicy": "flux-system:airbroke:tag"}
173178 replicaCount : 2
174179 cachePersistentVolume :
175180 enabled : true
@@ -195,9 +200,9 @@ spec:
195200 value : " xxxxx"
196201 - name : AIRBROKE_GITHUB_ORGS
197202 value : " xxxxx"
198- - name : NEXTAUTH_SECRET
203+ - name : BETTER_AUTH_SECRET
199204 value : " xxxxxxx"
200- - name : NEXTAUTH_URL
205+ - name : BETTER_AUTH_URL
201206 value : " https://xxxxxx"
202207 - name : AIRBROKE_OPENAI_API_KEY
203208 value : " sk-xxxxxxx"
@@ -242,7 +247,7 @@ spec:
242247 name : airbroke
243248 policy :
244249 semver :
245- range : ' >=1.1.22 <2.0.0'
250+ range : ' >=1.2.0 <2.0.0'
246251` ` `
247252
248253` ` ` yaml
0 commit comments