Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2024-01-03 21:17:04 +00:00
parent 23c029695d
commit cdb1f2f621
14 changed files with 103 additions and 42 deletions

View File

@ -1,9 +0,0 @@
## [kitchenowl-8.1.5](https://github.com/truecharts/charts/compare/kitchenowl-8.1.4...kitchenowl-8.1.5) (2024-01-02)
### Chore
- force bump to ensure up-to-date catalogs

View File

@ -7,6 +7,15 @@ title: Changelog
## [kitchenowl-8.2.0](https://github.com/truecharts/charts/compare/kitchenowl-8.1.5...kitchenowl-8.2.0) (2024-01-03)
### Feat
- Add OIDC providers ([#16748](https://github.com/truecharts/charts/issues/16748))
## [kitchenowl-8.1.5](https://github.com/truecharts/charts/compare/kitchenowl-8.1.4...kitchenowl-8.1.5) (2024-01-02) ## [kitchenowl-8.1.5](https://github.com/truecharts/charts/compare/kitchenowl-8.1.4...kitchenowl-8.1.5) (2024-01-02)
### Chore ### Chore
@ -88,12 +97,3 @@ title: Changelog
## [kitchenowl-7.0.10](https://github.com/truecharts/charts/compare/kitchenowl-7.0.9...kitchenowl-7.0.10) (2023-12-24) ## [kitchenowl-7.0.10](https://github.com/truecharts/charts/compare/kitchenowl-7.0.9...kitchenowl-7.0.10) (2023-12-24)
### Chore ### Chore
- update helm general non-major by renovate ([#16376](https://github.com/truecharts/charts/issues/16376))
## [kitchenowl-7.0.9](https://github.com/truecharts/charts/compare/kitchenowl-7.0.8...kitchenowl-7.0.9) (2023-12-23)
### Chore
- update helm general non-major by renovate ([#16373](https://github.com/truecharts/charts/issues/16373))

View File

@ -1,16 +1,16 @@
kubeVersion: ">=1.24.0-0" kubeVersion: ">=1.24.0-0"
apiVersion: v2 apiVersion: v2
name: kitchenowl name: kitchenowl
version: 8.1.5 version: 8.2.0
appVersion: latest appVersion: latest
description: KitchenOwl is a smart self-hosted grocery list and recipe manager. description: KitchenOwl is a smart self-hosted grocery list and recipe manager.
home: https://truecharts.org/charts/stable/kitchenowl home: https://truecharts.org/charts/stable/kitchenowl
icon: https://truecharts.org/img/hotlink-ok/chart-icons/kitchenowl.png icon: https://truecharts.org/img/hotlink-ok/chart-icons/kitchenowl.png
deprecated: false deprecated: false
sources: sources:
- https://tombursch.github.io/kitchenowl
- https://github.com/truecharts/charts/tree/master/charts/stable/kitchenowl - https://github.com/truecharts/charts/tree/master/charts/stable/kitchenowl
- https://hub.docker.com/r/tombursch/kitchenowl - https://hub.docker.com/r/tombursch/kitchenowl
- https://tombursch.github.io/kitchenowl
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
email: info@truecharts.org email: info@truecharts.org

View File

@ -0,0 +1,9 @@
## [kitchenowl-8.2.0](https://github.com/truecharts/charts/compare/kitchenowl-8.1.5...kitchenowl-8.2.0) (2024-01-03)
### Feat
- Add OIDC providers ([#16748](https://github.com/truecharts/charts/issues/16748))

View File

@ -82,6 +82,13 @@ workload:
imageSelector: backendImage imageSelector: backendImage
env: env:
FRONT_URL: "{{ .Values.workload.main.podSpec.containers.main.env.FRONT_URL }}" FRONT_URL: "{{ .Values.workload.main.podSpec.containers.main.env.FRONT_URL }}"
OIDC_ISSUER: ""
OIDC_CLIENT_ID: ""
OIDC_CLIENT_SECRET: ""
APPLE_CLIENT_ID: ""
APPLE_CLIENT_SECRET: ""
GOOGLE_CLIENT_ID: ""
GOOGLE_CLIENT_SECRET: ""
# Changed port to 10248 to avoid conflict with frontend # Changed port to 10248 to avoid conflict with frontend
HTTP_PORT: "10248" HTTP_PORT: "10248"
JWT_SECRET_KEY: JWT_SECRET_KEY:

View File

@ -113,6 +113,48 @@ questions:
type: string type: string
required: true required: true
default: "" default: ""
- variable: OIDC_ISSUER
label: "OIDC Issuer"
description: "See https://docs.kitchenowl.org/self-hosting/oidc/"
schema:
type: string
default: ""
- variable: OIDC_CLIENT_ID
label: "OIDC Client ID"
description: "See https://docs.kitchenowl.org/self-hosting/oidc/"
schema:
type: string
default: ""
- variable: OIDC_CLIENT_SECRET
label: "OIDC Client Secret"
description: "See https://docs.kitchenowl.org/self-hosting/oidc/"
schema:
type: string
default: ""
- variable: APPLE_CLIENT_ID
label: "Apple Client ID"
description: "See https://docs.kitchenowl.org/self-hosting/oidc/"
schema:
type: string
default: ""
- variable: APPLE_CLIENT_SECRET
label: "Apple Client Secret"
description: "See https://docs.kitchenowl.org/self-hosting/oidc/"
schema:
type: string
default: ""
- variable: GOOGLE_CLIENT_ID
label: "Google Client ID"
description: "See https://docs.kitchenowl.org/self-hosting/oidc/"
schema:
type: string
default: ""
- variable: GOOGLE_CLIENT_SECRET
label: "Google Client Secret"
description: "See https://docs.kitchenowl.org/self-hosting/oidc/"
schema:
type: string
default: ""
- variable: envList - variable: envList
label: Extra Environment Variables label: Extra Environment Variables
description: "Please be aware that some variables are set in the background, adding duplicates here might cause issues or prevent the app from starting..." description: "Please be aware that some variables are set in the background, adding duplicates here might cause issues or prevent the app from starting..."
@ -252,30 +294,42 @@ questions:
type: dict type: dict
additional_attrs: true additional_attrs: true
attrs: attrs:
- variable: registry - variable: enabled
label: "Registry" label: Enabled
schema: schema:
type: string type: boolean
required: true default: true
default: "https://index.docker.io/v1/" - variable: data
- variable: username label: Data
label: "Username"
schema: schema:
type: string type: dict
required: true additional_attrs: true
default: "" attrs:
- variable: password - variable: registry
label: "Password" label: "Registry"
schema: schema:
type: string type: string
required: true required: true
default: "" default: "https://index.docker.io/v1/"
- variable: email - variable: username
label: "Email" label: "Username"
schema: schema:
type: string type: string
required: true required: true
default: "" default: ""
- variable: password
label: "Password"
schema:
type: string
required: true
private: true
default: ""
- variable: email
label: "Email"
schema:
type: string
required: true
default: ""
- variable: service - variable: service
group: Networking and Services group: Networking and Services
label: Configure Service(s) label: Configure Service(s)