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/docmost/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: docmost
description: Docmost collaborative wiki and documentation software with PostgreSQL, Redis, local storage, and optional S3
type: application
version: 1.2.6
appVersion: "0.90.1"
appVersion: "0.95.0"
kubeVersion: ">=1.26.0-0"
icon: https://helmforge.dev/icons/charts/docmost.png
home: https://helmforge.dev
Expand Down
4 changes: 2 additions & 2 deletions charts/docmost/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ helm install docmost oci://ghcr.io/helmforgedev/helm/docmost
- Docmost requires PostgreSQL and Redis
- local storage uses `/app/data/storage`
- S3 mode uses the official `AWS_S3_*` environment variables documented by Docmost
- the default image tag is `0.90.1`, validated against the published `docmost/docmost:0.90.1` container image
- the default image tag is `0.95.0`, validated against the published `docmost/docmost:0.95.0` container image
- upstream telemetry can be disabled with `docmost.disableTelemetry=true`
- this chart intentionally does not keep `Chart.lock`; dependencies are resolved by the repository release workflow

Expand Down Expand Up @@ -153,7 +153,7 @@ backup:
|-----|---------|-------------|
| `replicaCount` | `1` | Number of Docmost application pods. Values greater than `1` require `storage.mode=s3` |
| `image.repository` | `docker.io/docmost/docmost` | Docmost container image repository |
| `image.tag` | `0.90.1` | Docmost image tag |
| `image.tag` | `0.95.0` | Docmost image tag |
| `docmost.appUrl` | `""` | External Docmost URL |
| `docmost.appSecret` | `""` | Application secret, auto-generated when empty |
| `docmost.jwtTokenExpiresIn` | `30d` | JWT expiration |
Expand Down
2 changes: 1 addition & 1 deletion charts/docmost/docs/architecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ and users are supported without editing SQL manually.

## Version Pinning Note

The chart pins the upstream application image through `image.tag` and `appVersion`. For this release, `docmost/docmost:0.90.1` was verified as available on Docker Hub before updating the chart.
The chart pins the upstream application image through `image.tag` and `appVersion`. For this release, `docmost/docmost:0.95.0` was verified as available on Docker Hub before updating the chart.

## Telemetry

Expand Down
2 changes: 1 addition & 1 deletion charts/docmost/tests/deployment_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ tests:
value: 3000
- equal:
path: spec.template.spec.containers[0].image
value: docker.io/docmost/docmost:0.90.1
value: docker.io/docmost/docmost:0.95.0
- contains:
path: spec.template.spec.containers[0].env
content:
Expand Down
2 changes: 1 addition & 1 deletion charts/docmost/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ image:
# -- Docmost container image repository
repository: docker.io/docmost/docmost
# -- Docmost image tag. Defaults to appVersion validated on GitHub Releases and Docker Hub.
tag: "0.90.1"
tag: "0.95.0"
# -- Image pull policy
pullPolicy: IfNotPresent

Expand Down