Synchronize upstreamed folder to d2a6482b3

This commit is contained in:
bitnami-bot
2019-03-19 12:37:28 +00:00
parent 1b1f86aa15
commit d1b09e3069
9 changed files with 21 additions and 7 deletions

View File

@@ -1,6 +1,6 @@
apiVersion: v1
name: ghost
version: 6.5.3
version: 6.6.0
appVersion: 2.18.1
description: A simple, powerful publishing platform that allows you to share your stories with the world
keywords:

View File

@@ -89,6 +89,7 @@ The following table lists the configurable parameters of the Ghost chart and the
| `ingress.hosts[0].name` | Hostname to your Ghost installation | `ghost.local` |
| `ingress.hosts[0].path` | Path within the url structure | `/` |
| `ingress.hosts[0].tls` | Utilize TLS backend in ingress | `false` |
| `ingress.hosts[0].tlsHosts` | Array of TLS hosts for ingress record (defaults to `ingress.hosts[0].name` if `nil`) | `nil` |
| `ingress.hosts[0].tlsSecret` | TLS Secret (certificates) | `ghost.local-tls-secret` |
| `ingress.secrets[0].name` | TLS Secret Name | `nil` |
| `ingress.secrets[0].certificate` | TLS Secret Certificate | `nil` |

View File

@@ -30,7 +30,13 @@ spec:
{{- range .Values.ingress.hosts }}
{{- if .tls }}
- hosts:
{{- if .tlsHosts }}
{{- range $host := .tlsHosts }}
- {{ $host }}
{{- end }}
{{- else }}
- {{ .name }}
{{- end }}
secretName: {{ .tlsSecret }}
{{- end }}
{{- end }}

View File

@@ -231,6 +231,13 @@ ingress:
## Set this to true in order to enable TLS on the ingress record
tls: false
## Optionally specify the TLS hosts for the ingress record
## Useful when the Ingress controller supports www-redirection
## If not specified, the above host name will be used
# tlsHosts:
# - www.ghost.local
# - ghost.local
## If TLS is set to true, you must declare what secret will store the key/certificate for TLS
tlsSecret: ghost.local-tls

View File

@@ -1,6 +1,6 @@
apiVersion: v1
name: mongodb
version: 5.13.0
version: 5.13.1
appVersion: 4.0.6
description: NoSQL document-oriented database that stores JSON-like documents with dynamic schemas, simplifying the integration of data in content-driven applications.
keywords:

View File

@@ -111,7 +111,7 @@ spec:
value: {{ .Values.mongodbDatabase | quote }}
{{- end }}
{{- if .Values.usePassword }}
{{- if or .Values.mongodbPassword .Values.existingSecret }}
{{- if and .Values.mongodbUsername (or .Values.mongodbPassword .Values.existingSecret) }}
- name: MONGODB_PASSWORD
valueFrom:
secretKeyRef:

View File

@@ -1,7 +1,7 @@
apiVersion: v1
name: redis
version: 6.4.1
appVersion: 4.0.13
version: 6.4.2
appVersion: 4.0.14
description: Open source, advanced key-value store. It is often referred to as a data structure server since keys can contain strings, hashes, lists, sets and sorted sets.
keywords:
- redis

View File

@@ -16,7 +16,7 @@ image:
## Bitnami Redis image tag
## ref: https://github.com/bitnami/bitnami-docker-redis#supported-tags-and-respective-dockerfile-links
##
tag: 4.0.13
tag: 4.0.14
## Specify a imagePullPolicy
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images

View File

@@ -16,7 +16,7 @@ image:
## Bitnami Redis image tag
## ref: https://github.com/bitnami/bitnami-docker-redis#supported-tags-and-respective-dockerfile-links
##
tag: 4.0.13
tag: 4.0.14
## Specify a imagePullPolicy
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images