update to 0.27.5, allow extra env vars (#19722)

Signed-off-by: Bart Verwilst <bart@verwilst.be>
This commit is contained in:
Bort Verwilst
2019-12-20 13:55:33 -08:00
committed by Kubernetes Prow Robot
parent 9c808230d2
commit ee571ffd60
4 changed files with 11 additions and 4 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
apiVersion: v1
appVersion: 0.27.4-1
appVersion: 0.27.5
description: BookStack is a simple, self-hosted, easy-to-use platform for organising and storing information.
name: bookstack
version: 1.1.2
version: 1.2.0
home: https://www.bookstackapp.com/
icon: https://github.com/BookStackApp/website/blob/master/static/images/logo.png
sources:
+2 -1
View File
@@ -47,9 +47,10 @@ The following table lists the configurable parameters of the Redmine chart and t
| Parameter | Description | Default |
| --------------------------------- | ---------------------------------------- | ------------------------------------------------------- |
| `env` | additional env variables | `{}` |
| `replicaCount` | Number of replicas to start | `1` |
| `image.repository` | Bookstack image name | `solidnerd/bookstack` |
| `image.tag` | Bookstack image tag | `0.27.4-1` |
| `image.tag` | Bookstack image tag | `0.27.5` |
| `image.pullPolicy` | Bookstack image pull policy | `IfNotPresent` |
| `externalDatabase.host` | Host of the external database | `nil` |
| `externalDatabase.port` | Port of the external database | `3306` |
@@ -85,6 +85,10 @@ spec:
name: {{ printf "%s-%s" .Release.Name "app" }}
key: app-key
{{- end }}
{{- range $key, $value := .Values.env }}
- name: {{ $key | upper | replace "." "_" }}
value: {{ $value | quote }}
{{- end }}
volumeMounts:
- name: uploads
mountPath: /var/www/bookstack/public/uploads
+3 -1
View File
@@ -6,13 +6,15 @@ replicaCount: 1
image:
repository: solidnerd/bookstack
tag: 0.27.4-1
tag: 0.27.5
pullPolicy: IfNotPresent
app:
# Laravel APP_KEY. Generate one with `php artisan key:generate` and put here if you want a static key.
key:
env: {}
##
## External database configuration
##