mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-24 16:09:08 +00:00
[recipes] update tandoor version and adjust default upload size (#1389)
* update tandoor version and adjust default upload size
This commit is contained in:
parent
bbb81ffb9e
commit
0065e83f75
@ -1,8 +1,8 @@
|
|||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
appVersion: 0.16.7
|
appVersion: 1.0.5.2
|
||||||
description: Recipes is a Django application to manage, tag and search recipes using either built in models or external storage providers hosting PDF's, Images or other files.
|
description: Recipes is a Django application to manage, tag and search recipes using either built in models or external storage providers hosting PDF's, Images or other files.
|
||||||
name: recipes
|
name: recipes
|
||||||
version: 6.2.0
|
version: 6.3.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- recipes
|
- recipes
|
||||||
@ -22,4 +22,4 @@ dependencies:
|
|||||||
annotations:
|
annotations:
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- kind: changed
|
- kind: changed
|
||||||
description: Upgraded `common` chart dependency to version `4.3.0`.
|
description: Upgraded `tandoor` to version `1.0.5.2` and `nginx` sidecar `1.21.6`.
|
||||||
|
@ -79,17 +79,18 @@ N/A
|
|||||||
| env | object | See below | environment variables. See [project docs](https://raw.githubusercontent.com/vabene1111/recipes/master/.env.template) for more details. |
|
| env | object | See below | environment variables. See [project docs](https://raw.githubusercontent.com/vabene1111/recipes/master/.env.template) for more details. |
|
||||||
| image.pullPolicy | string | `"IfNotPresent"` | image pull policy |
|
| image.pullPolicy | string | `"IfNotPresent"` | image pull policy |
|
||||||
| image.repository | string | `"vabene1111/recipes"` | image repository |
|
| image.repository | string | `"vabene1111/recipes"` | image repository |
|
||||||
| image.tag | string | `"0.16.7"` | image tag |
|
| image.tag | string | `"1.0.5.2"` | image tag |
|
||||||
| ingress.main | object | See values.yaml | Enable and configure ingress settings for the chart under this key. |
|
| 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. |
|
| 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. |
|
| service | object | See values.yaml | Configures service settings for the chart. |
|
||||||
| sidecar.image.pullPolicy | string | `"IfNotPresent"` | nginx sidecar image pull policy |
|
| sidecar.image.pullPolicy | string | `"IfNotPresent"` | nginx sidecar image pull policy |
|
||||||
| sidecar.image.repository | string | `"nginx"` | nginx sidecar image repository |
|
| sidecar.image.repository | string | `"nginx"` | nginx sidecar image repository |
|
||||||
| sidecar.image.tag | string | `"1.19.6"` | nginx sidecar image tag |
|
| sidecar.image.tag | string | `"1.21.6"` | nginx sidecar image tag |
|
||||||
|
| sidecar.config.client_max_body_size | string | `"128M"` | nginx config upload size |
|
||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
### Version 6.2.0
|
### Version 6.3.0
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
|
|
||||||
@ -97,7 +98,7 @@ N/A
|
|||||||
|
|
||||||
#### Changed
|
#### Changed
|
||||||
|
|
||||||
* Upgraded `common` chart dependency to version `4.3.0`.
|
* Upgraded `tandoor` to version `1.0.5.2` and `nginx` sidecar `1.21.6`.
|
||||||
|
|
||||||
#### Fixed
|
#### Fixed
|
||||||
|
|
||||||
|
@ -15,7 +15,7 @@ data:
|
|||||||
server {
|
server {
|
||||||
listen 80;
|
listen 80;
|
||||||
server_name _;
|
server_name _;
|
||||||
client_max_body_size 16M;
|
client_max_body_size {{ .Values.sidecar.config.client_max_body_size }};
|
||||||
# serve media files
|
# serve media files
|
||||||
location /media/ {
|
location /media/ {
|
||||||
alias /media/;
|
alias /media/;
|
||||||
|
@ -9,7 +9,7 @@ image:
|
|||||||
# -- image repository
|
# -- image repository
|
||||||
repository: vabene1111/recipes
|
repository: vabene1111/recipes
|
||||||
# -- image tag
|
# -- image tag
|
||||||
tag: 0.16.7
|
tag: 1.0.5.2
|
||||||
# -- image pull policy
|
# -- image pull policy
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
|
||||||
@ -18,9 +18,12 @@ sidecar:
|
|||||||
# -- nginx sidecar image repository
|
# -- nginx sidecar image repository
|
||||||
repository: nginx
|
repository: nginx
|
||||||
# -- nginx sidecar image tag
|
# -- nginx sidecar image tag
|
||||||
tag: 1.19.6
|
tag: 1.21.6
|
||||||
# -- nginx sidecar image pull policy
|
# -- nginx sidecar image pull policy
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
# -- specify nginx related configs
|
||||||
|
config:
|
||||||
|
client_max_body_size: "128M"
|
||||||
|
|
||||||
# -- environment variables. See [project docs](https://raw.githubusercontent.com/vabene1111/recipes/master/.env.template) for more details.
|
# -- environment variables. See [project docs](https://raw.githubusercontent.com/vabene1111/recipes/master/.env.template) for more details.
|
||||||
# @default -- See below
|
# @default -- See below
|
||||||
|
Loading…
Reference in New Issue
Block a user