diff --git a/charts/stable/mealie/Chart.yaml b/charts/stable/mealie/Chart.yaml index 1658838b..81a748f9 100644 --- a/charts/stable/mealie/Chart.yaml +++ b/charts/stable/mealie/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: v0.4.3 description: Mealie is a self hosted recipe manager and meal planner with a RestAPI backend and a reactive frontend application built in Vue for a pleasant user experience for the whole family. name: mealie -version: 1.0.0 +version: 2.0.0 kubeVersion: ">=1.16.0-0" keywords: - grocy @@ -16,4 +16,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/mealie/README.md b/charts/stable/mealie/README.md index b1415988..338b0960 100644 --- a/charts/stable/mealie/README.md +++ b/charts/stable/mealie/README.md @@ -1,6 +1,6 @@ # mealie -![Version: 1.0.0](https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square) ![AppVersion: v0.4.3](https://img.shields.io/badge/AppVersion-v0.4.3-informational?style=flat-square) +![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![AppVersion: v0.4.3](https://img.shields.io/badge/AppVersion-v0.4.3-informational?style=flat-square) Mealie is a self hosted recipe manager and meal planner with a RestAPI backend and a reactive frontend application built in Vue for a pleasant user experience for the whole family. @@ -18,7 +18,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 @@ -75,16 +75,15 @@ N/A | Key | Type | Default | Description | |-----|------|---------|-------------| -| env.DB_TYPE | string | `"sqlite"` | | -| image.pullPolicy | string | `"IfNotPresent"` | | -| image.repository | string | `"hkotel/mealie"` | | -| image.tag | string | `"v0.4.3"` | | -| ingress.enabled | bool | `false` | | -| persistence.config.emptyDir.enabled | bool | `false` | | -| persistence.config.enabled | bool | `false` | | -| persistence.config.mountPath | string | `"/app/data/"` | | -| service.port.port | int | `9925` | | -| strategy.type | string | `"Recreate"` | | +| env | object | See below | environment variables. See [image docs](https://hay-kot.github.io/mealie/getting-started/install/#env-variables) for more details. | +| env.DB_TYPE | string | `"sqlite"` | Set the application database type | +| env.TZ | string | `"UTC"` | Set the container timezone | +| image.pullPolicy | string | `"IfNotPresent"` | image pull policy | +| image.repository | string | `"hkotel/mealie"` | image repository | +| image.tag | string | `"v0.4.3"` | 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 @@ -92,6 +91,13 @@ 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). +### [2.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. + ### [1.0.0] #### Added @@ -106,7 +112,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), - N/A -[1.0.0]: #1.0.0 +[2.0.0]: #200 +[1.0.0]: #100 ## Support diff --git a/charts/stable/mealie/README_CHANGELOG.md.gotmpl b/charts/stable/mealie/README_CHANGELOG.md.gotmpl index 99c5085f..31fc4a53 100644 --- a/charts/stable/mealie/README_CHANGELOG.md.gotmpl +++ b/charts/stable/mealie/README_CHANGELOG.md.gotmpl @@ -9,6 +9,13 @@ 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). +### [2.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. + ### [1.0.0] #### Added @@ -23,5 +30,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), - N/A -[1.0.0]: #1.0.0 +[2.0.0]: #200 +[1.0.0]: #100 {{- end -}} diff --git a/charts/stable/mealie/values.yaml b/charts/stable/mealie/values.yaml index 4aff1e2d..dc21789a 100644 --- a/charts/stable/mealie/values.yaml +++ b/charts/stable/mealie/values.yaml @@ -6,26 +6,38 @@ # image: + # -- image repository repository: hkotel/mealie + # -- image tag tag: v0.4.3 + # -- image pull policy pullPolicy: IfNotPresent -strategy: - type: Recreate - +# -- environment variables. See [image docs](https://hay-kot.github.io/mealie/getting-started/install/#env-variables) for more details. +# @default -- See below env: + # -- Set the container timezone + TZ: UTC + # -- Set the application database type DB_TYPE: sqlite +# -- Configures service settings for the chart. +# @default -- See values.yaml service: - port: - port: 80 + main: + ports: + http: + port: 80 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: /app/data/