Skip to content
Merged
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
2 changes: 1 addition & 1 deletion charts/appwrite/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: appwrite
description: Appwrite self-hosted backend-as-a-service platform with MariaDB and Redis
type: application
version: 1.2.3
appVersion: "1.9.0"
appVersion: "1.9.5"
kubeVersion: ">=1.26.0-0"
icon: https://helmforge.dev/icons/charts/appwrite.png
home: https://helmforge.dev
Expand Down
10 changes: 9 additions & 1 deletion charts/appwrite/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ When ingress is enabled, requests are routed by path:
| `image.repository` | `appwrite/appwrite` | Appwrite server image |
| `image.tag` | `""` (uses appVersion) | Image tag |
| `console.image.repository` | `appwrite/console` | Console image |
| `console.image.tag` | `7.5.7` | Console image tag |
| `console.image.tag` | `8.7.5` | Console image tag |
| `appwrite.locale` | `en` | Application locale |
| `appwrite.domain` | `""` (auto-detected) | Appwrite domain |
| `appwrite.openSslKeyV1` | `""` (auto-generated) | 64-char hex encryption key |
Expand All @@ -76,6 +76,14 @@ When ingress is enabled, requests are routed by path:

See [`values.yaml`](values.yaml) for the full configuration reference.

## Upgrade Notes

Appwrite 1.9.5 requires the upstream database migration step even when upgrading
from Appwrite 1.9.0. After `helm upgrade`, run the Appwrite migrate command
against an Appwrite API pod before returning production traffic to the release,
for example with `kubectl exec deploy/<release>-appwrite-api -- appwrite migrate`
adjusted to the release name and namespace.

## External Database

To use an external MariaDB instead of the subchart:
Expand Down
2 changes: 1 addition & 1 deletion charts/appwrite/tests/deployment_api_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ tests:
asserts:
- equal:
path: spec.template.spec.containers[0].image
value: "docker.io/appwrite/appwrite:1.9.0"
value: "docker.io/appwrite/appwrite:1.9.5"

- it: should run http.php entrypoint
template: templates/deployment-api.yaml
Expand Down
2 changes: 1 addition & 1 deletion charts/appwrite/tests/deployment_console_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ tests:
asserts:
- equal:
path: spec.template.spec.containers[0].image
value: "docker.io/appwrite/console:7.5.7"
value: "docker.io/appwrite/console:8.7.5"

- it: should have component label
asserts:
Expand Down
5 changes: 2 additions & 3 deletions charts/appwrite/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ image:
# -- Appwrite server image repository
repository: docker.io/appwrite/appwrite
# -- Appwrite image tag. Defaults to appVersion.
tag: "1.9.0"
tag: "1.9.5"
# -- Image pull policy
pullPolicy: IfNotPresent

Expand All @@ -36,7 +36,7 @@ console:
# -- Appwrite console image repository
repository: docker.io/appwrite/console
# -- Console image tag
tag: "7.5.7"
tag: "8.7.5"
# -- Console image pull policy
pullPolicy: IfNotPresent

Expand Down Expand Up @@ -500,4 +500,3 @@ externalSecrets:
target:
creationPolicy: Owner
data: []