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
6 changes: 3 additions & 3 deletions charts/komga/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: komga
description: Komga media server for comics and manga with persistent SQLite storage, library management, and S3 backup
type: application
version: 1.4.12
appVersion: "1.24.4"
appVersion: "1.25.0"
kubeVersion: ">=1.26.0-0"
maintainers:
- name: helmforgedev
Expand All @@ -23,8 +23,8 @@ sources:
icon: https://helmforge.dev/icons/charts/komga.png
annotations:
artifacthub.io/changes: |
- kind: fixed
description: "complete chart standards (#512)"
- kind: changed
description: "bump komga to 1.25.0 (#696)"
artifacthub.io/maintainers: |
- name: HelmForge
email: berlofa@helmforge.dev
Expand Down
9 changes: 8 additions & 1 deletion charts/komga/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,13 @@ After deploying, port-forward to access the web interface and create your admin
kubectl port-forward svc/<release>-komga 25600:80
```

## Upgrade Notes

Komga `1.25.0` adds support for solid RAR4 archives, enforces Kobo content
restrictions more consistently, flattens hierarchical OpenAPI schemas, and
updates application dependencies including Spring Boot. Back up the `/config`
PVC before upgrading because Komga stores its SQLite databases there.

## Production Example

```yaml
Expand Down Expand Up @@ -98,7 +105,7 @@ backup:
| Key | Default | Description |
|-----|---------|-------------|
| `image.repository` | `docker.io/gotson/komga` | Image repository |
| `image.tag` | `"1.24.4"` | Image tag |
| `image.tag` | `"1.25.0"` | Image tag |
| `image.pullPolicy` | `IfNotPresent` | Pull policy |

### Komga Configuration
Expand Down
2 changes: 1 addition & 1 deletion charts/komga/tests/deployment_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/gotson/komga:1.24.4"
value: "docker.io/gotson/komga:1.25.0"

- it: should set container port to 25600
asserts:
Expand Down
2 changes: 1 addition & 1 deletion charts/komga/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ image:
# -- Komga image repository
repository: docker.io/gotson/komga
# -- Komga image tag
tag: "1.24.4"
tag: "1.25.0"
pullPolicy: IfNotPresent

imagePullSecrets: []
Expand Down