diff --git a/charts/stable/calibre-web/Chart.yaml b/charts/stable/calibre-web/Chart.yaml index cb593e85..36e4e060 100644 --- a/charts/stable/calibre-web/Chart.yaml +++ b/charts/stable/calibre-web/Chart.yaml @@ -1,8 +1,8 @@ apiVersion: v2 -appVersion: 0.6.9 +appVersion: 0.6.12 description: Calibre-Web is a web app providing a clean interface for browsing, reading and downloading eBooks using an existing Calibre database. name: calibre-web -version: 6.4.0 +version: 7.0.0 kubeVersion: ">=1.16.0-0" keywords: - calibre @@ -18,4 +18,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 2.5.0 + version: 3.0.2 diff --git a/charts/stable/calibre-web/README.md b/charts/stable/calibre-web/README.md index d56ca4ed..f7e089b7 100644 --- a/charts/stable/calibre-web/README.md +++ b/charts/stable/calibre-web/README.md @@ -1,6 +1,6 @@ # calibre-web -![Version: 6.4.0](https://img.shields.io/badge/Version-6.4.0-informational?style=flat-square) ![AppVersion: 0.6.9](https://img.shields.io/badge/AppVersion-0.6.9-informational?style=flat-square) +![Version: 7.0.0](https://img.shields.io/badge/Version-7.0.0-informational?style=flat-square) ![AppVersion: 0.6.12](https://img.shields.io/badge/AppVersion-0.6.12-informational?style=flat-square) Calibre-Web is a web app providing a clean interface for browsing, reading and downloading eBooks using an existing Calibre database. @@ -19,7 +19,7 @@ Kubernetes: `>=1.16.0-0` | Repository | Name | Version | |------------|------|---------| -| https://library-charts.k8s-at-home.com | common | 2.5.0 | +| https://library-charts.k8s-at-home.com | common | 3.0.2 | ## TL;DR @@ -76,17 +76,13 @@ N/A | Key | Type | Default | Description | |-----|------|---------|-------------| -| env | object | `{}` | | -| image.pullPolicy | string | `"IfNotPresent"` | | -| image.repository | string | `"linuxserver/calibre-web"` | | -| image.tag | string | `"version-0.6.9"` | | -| ingress.enabled | bool | `false` | | -| persistence.books.emptyDir.enabled | bool | `false` | | -| persistence.books.enabled | bool | `false` | | -| persistence.config.emptyDir.enabled | bool | `false` | | -| persistence.config.enabled | bool | `false` | | -| service.port.port | int | `8083` | | -| strategy.type | string | `"Recreate"` | | +| env | object | See below | environment variables. See more environment variables in the [calibre-web documentation](https://github.com/linuxserver/docker-calibre-web#parameters). | +| image.pullPolicy | string | `"IfNotPresent"` | image pull policy | +| image.repository | string | `"linuxserver/calibre-web"` | image repository | +| image.tag | string | `"version-0.6.12"` | image tag | +| ingress.main | object | See values.yaml | Enable and configure ingress settings for the chart under this key. | +| persistence | object | See values.yaml | Configure persistence settings for the chart under this key. | +| service | object | See values.yaml | Configures service settings for the chart. | ## Changelog @@ -94,21 +90,14 @@ All notable changes to this application Helm chart will be documented in this fi The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -### [1.0.0] - -#### Added - -- N/A +### [7.0.0] #### Changed +- **BREAKING**: Upgraded the common library dependency to version 3.0.2. This introduces several breaking changes (`service`, `ingress` and `persistence` keys have been refactored). + Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-3.0.2/charts/stable/common/) for the up-to-date values. +- Changed image tag to `version-0.6.12`. -- N/A - -#### Removed - -- N/A - -[1.0.0]: #1.0.0 +[7.0.0]: #700 ## Support diff --git a/charts/stable/calibre-web/README_CHANGELOG.md.gotmpl b/charts/stable/calibre-web/README_CHANGELOG.md.gotmpl index 457def03..ac5d6aec 100644 --- a/charts/stable/calibre-web/README_CHANGELOG.md.gotmpl +++ b/charts/stable/calibre-web/README_CHANGELOG.md.gotmpl @@ -9,19 +9,12 @@ All notable changes to this application Helm chart will be documented in this fi The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -### [1.0.0] - -#### Added - -- N/A +### [7.0.0] #### Changed +- **BREAKING**: Upgraded the common library dependency to version 3.0.2. This introduces several breaking changes (`service`, `ingress` and `persistence` keys have been refactored). + Be sure to check out the [library chart](https://github.com/k8s-at-home/library-charts/blob/common-3.0.2/charts/stable/common/) for the up-to-date values. +- Changed image tag to `version-0.6.12`. -- N/A - -#### Removed - -- N/A - -[1.0.0]: #1.0.0 +[7.0.0]: #700 {{- end -}} diff --git a/charts/stable/calibre-web/values.yaml b/charts/stable/calibre-web/values.yaml index 0ef1aba8..cca5397f 100644 --- a/charts/stable/calibre-web/values.yaml +++ b/charts/stable/calibre-web/values.yaml @@ -6,46 +6,43 @@ # image: + # -- image repository repository: linuxserver/calibre-web + # -- image pull policy pullPolicy: IfNotPresent - tag: version-0.6.9 + # -- image tag + tag: version-0.6.12 -strategy: - type: Recreate - -env: {} - # TZ: - # PUID: - # PGID: - # UMASK: - # DOCKER_MODS: +# -- environment variables. See more environment variables in the [calibre-web documentation](https://github.com/linuxserver/docker-calibre-web#parameters). +# @default -- See below +env: + # -- Set the container timezone + TZ: UTC + # -- Specify the user ID the application will run as + PUID: "1001" + # -- Specify the group ID the application will run as + PGID: "1001" +# -- Configures service settings for the chart. +# @default -- See values.yaml service: - port: - port: 8083 + main: + ports: + http: + port: 8083 ingress: - enabled: false + # -- Enable and configure ingress settings for the chart under this key. + # @default -- See values.yaml + main: + enabled: false +# -- Configure persistence settings for the chart under this key. +# @default -- See values.yaml persistence: config: enabled: false - emptyDir: - enabled: false - + mountPath: /config books: enabled: false - emptyDir: - enabled: false - ## Persistent Volume Storage Class - ## If defined, storageClassName: - ## If set to "-", storageClassName: "", which disables dynamic provisioning - ## If undefined (the default) or set to null, no storageClassName spec is - ## set, choosing the default provisioner. (gp2 on AWS, standard on - ## GKE, AWS & OpenStack) - # storageClass: "-" - # accessMode: ReadWriteOnce - # size: 1Gi - ## Set to true to retain the PVC upon helm uninstall - # skipuninstall: false - # existingClaim: "" + mountPath: /books