Synchronize upstreamed folder to 21074bc27

This commit is contained in:
bitnami-bot
2019-12-18 01:35:12 +00:00
parent 05955f077e
commit 59d6763810
4 changed files with 12 additions and 2 deletions

View File

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

View File

@@ -116,6 +116,7 @@ The following table lists the configurable parameters of the Ghost chart and the
| `persistence.size` | PVC Storage Request for Ghost volume | `8Gi` |
| `persistence.path` | Path to mount the volume at, to use other images | `/bitnami` |
| `resources` | CPU/Memory resource requests/limits | Memory: `512Mi`, CPU: `300m` |
| `nodeSelector` | Node selector for pod assignment | `{}` |
| `affinity` | Map of node/pod affinities | `{}` |
The above parameters map to the env variables defined in [bitnami/ghost](http://github.com/bitnami/bitnami-docker-ghost). For more information please refer to the [bitnami/ghost](http://github.com/bitnami/bitnami-docker-ghost) image documentation.

View File

@@ -172,8 +172,12 @@ spec:
{{- else }}
emptyDir: {}
{{- end }}
{{- with .Values.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.affinity }}
affinity:
{{ toYaml . | indent 8 }}
{{- toYaml . | nindent 8 }}
{{- end }}
{{- end -}}

View File

@@ -265,6 +265,11 @@ ingress:
# key:
# certificate:
## Node selector for pod assignment
## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector
##
nodeSelector: {}
## Affinity for pod assignment
## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
##