mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
update to 0.27.5, allow extra env vars (#19722)
Signed-off-by: Bart Verwilst <bart@verwilst.be>
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
9c808230d2
commit
ee571ffd60
@@ -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:
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
##
|
||||
|
||||
Reference in New Issue
Block a user