Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2023-07-08 19:00:53 +00:00
parent f45b7aeffb
commit 7c7e6e1d0f
13 changed files with 57 additions and 26 deletions

View File

@ -1,9 +0,0 @@
## [invidious-5.0.11](https://github.com/truecharts/charts/compare/invidious-5.0.10...invidious-5.0.11) (2023-07-01)
### Chore
- update helm general non-major ([#10069](https://github.com/truecharts/charts/issues/10069))

View File

@ -4,6 +4,15 @@
## [invidious-5.1.0](https://github.com/truecharts/charts/compare/invidious-5.0.11...invidious-5.1.0) (2023-07-08)
### Fix
- patch hmac_key requirement ([#10310](https://github.com/truecharts/charts/issues/10310))
## [invidious-5.0.11](https://github.com/truecharts/charts/compare/invidious-5.0.10...invidious-5.0.11) (2023-07-01)
### Chore
@ -85,15 +94,6 @@
## [invidious-5.0.9](https://github.com/truecharts/charts/compare/invidious-5.0.8...invidious-5.0.9) (2023-06-14)
### Chore
- update container image tccr.io/truecharts/invidious to latest ([#9641](https://github.com/truecharts/charts/issues/9641))
## [invidious-5.0.9](https://github.com/truecharts/charts/compare/invidious-5.0.8...invidious-5.0.9) (2023-06-14)
### Chore

View File

@ -21,7 +21,7 @@ sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/invidious
- https://github.com/iv-org/invidious
- https://docs.invidious.io/installation/#docker
version: 5.0.11
version: 5.1.0
annotations:
truecharts.org/catagories: |
- media

View File

@ -0,0 +1,9 @@
## [invidious-5.1.0](https://github.com/truecharts/charts/compare/invidious-5.0.11...invidious-5.1.0) (2023-07-08)
### Fix
- patch hmac_key requirement ([#10310](https://github.com/truecharts/charts/issues/10310))

View File

@ -479,7 +479,7 @@ questions:
default: false
- variable: hmac_key
label: HMAC Key
description: HMAC signing key used for CSRF tokens and pubsub subscriptions verification.
description: HMAC signing key used for CSRF tokens and pubsub subscriptions verification. A random key must be generated and placed here.
schema:
type: string
private: true
@ -1745,13 +1745,44 @@ questions:
show_if: [["type", "=", "nfs"]]
type: string
default: ""
- variable: setPermissions
label: Automatic Permissions
description: Automatically set permissions on install
- variable: autoPermissions
label: Automatic Permissions Configuration
description: Automatically set permissions
schema:
show_if: [["type", "=", "hostPath"]]
type: boolean
default: false
show_if: [["type", "!=", "pvc"]]
type: dict
additional_attrs: true
attrs:
- variable: enabled
label: enabled
schema:
type: boolean
default: false
show_subquestions_if: true
subquestions:
- variable: chown
label: Run CHOWN
description: |
It will run CHOWN on the path with the given fsGroup
schema:
type: boolean
default: false
- variable: chmod
label: Run CHMOD
description: |
It will run CHMOD on the path with the given value</br>
Format should be 3 digits, e.g. 770
schema:
type: string
valid_chars: '[0-9]{3}'
default: ""
- variable: recursive
label: Recursive
description: |
It will run CHOWN and CHMOD recursively
schema:
type: boolean
default: false
- variable: readOnly
label: Read Only
schema: