mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-23 23:49:12 +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
|
||||
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.
|
||||
name: recipes
|
||||
version: 6.2.0
|
||||
version: 6.3.0
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
keywords:
|
||||
- recipes
|
||||
@ -22,4 +22,4 @@ dependencies:
|
||||
annotations:
|
||||
artifacthub.io/changes: |
|
||||
- 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. |
|
||||
| image.pullPolicy | string | `"IfNotPresent"` | image pull policy |
|
||||
| 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. |
|
||||
| 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. |
|
||||
| sidecar.image.pullPolicy | string | `"IfNotPresent"` | nginx sidecar image pull policy |
|
||||
| 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
|
||||
|
||||
### Version 6.2.0
|
||||
### Version 6.3.0
|
||||
|
||||
#### Added
|
||||
|
||||
@ -97,7 +98,7 @@ N/A
|
||||
|
||||
#### 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
|
||||
|
||||
|
@ -15,7 +15,7 @@ data:
|
||||
server {
|
||||
listen 80;
|
||||
server_name _;
|
||||
client_max_body_size 16M;
|
||||
client_max_body_size {{ .Values.sidecar.config.client_max_body_size }};
|
||||
# serve media files
|
||||
location /media/ {
|
||||
alias /media/;
|
||||
|
@ -9,7 +9,7 @@ image:
|
||||
# -- image repository
|
||||
repository: vabene1111/recipes
|
||||
# -- image tag
|
||||
tag: 0.16.7
|
||||
tag: 1.0.5.2
|
||||
# -- image pull policy
|
||||
pullPolicy: IfNotPresent
|
||||
|
||||
@ -18,9 +18,12 @@ sidecar:
|
||||
# -- nginx sidecar image repository
|
||||
repository: nginx
|
||||
# -- nginx sidecar image tag
|
||||
tag: 1.19.6
|
||||
tag: 1.21.6
|
||||
# -- nginx sidecar image pull policy
|
||||
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.
|
||||
# @default -- See below
|
||||
|
Loading…
Reference in New Issue
Block a user