Synchronize upstreamed folder to dd7f6f2f1

This commit is contained in:
bitnami-bot
2019-03-26 12:37:29 +00:00
parent 64f707e2a8
commit b7f942e2a0
6 changed files with 44 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
apiVersion: v1
name: ghost
version: 6.7.1
appVersion: 2.18.2
version: 6.7.2
appVersion: 2.18.3
description: A simple, powerful publishing platform that allows you to share your stories with the world
keywords:
- ghost

View File

@@ -13,7 +13,7 @@
image:
registry: docker.io
repository: bitnami/ghost
tag: 2.18.2
tag: 2.18.3
## 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

@@ -1,6 +1,6 @@
apiVersion: v1
name: redmine
version: 9.2.0
version: 9.3.0
appVersion: 4.0.2
description: A flexible project management web application.
keywords:

View File

@@ -100,6 +100,10 @@ The following table lists the configurable parameters of the Redmine chart and t
| `ingress.secrets[0].name` | TLS Secret Name | `nil` |
| `ingress.secrets[0].certificate` | TLS Secret Certificate | `nil` |
| `ingress.secrets[0].key` | TLS Secret Key | `nil` |
| `nodeSelector` | Node labels for pod assignment | `{}` |
| `tolerations` | List of node taints to tolerate | `{}` |
| `affinity` | Map of node/pod affinities | `{}` |
| `podAnnotations` | Pod annotations | `{}` |
| `persistence.enabled` | Enable persistence using PVC | `true` |
| `persistence.existingClaim` | The name of an existing PVC | `nil` |
| `persistence.storageClass` | PVC Storage Class | `nil` (uses alpha storage class annotation) |

View File

@@ -20,8 +20,24 @@ spec:
app: {{ template "redmine.fullname" . }}
chart: {{ template "redmine.chart" . }}
release: "{{ .Release.Name }}"
{{- if .Values.podAnnotations }}
annotations:
{{ toYaml .Values.podAnnotations | indent 8 }}
{{- end }}
spec:
{{- include "redmine.imagePullSecrets" . | indent 6 }}
{{- if .Values.nodeSelector }}
nodeSelector:
{{ toYaml .Values.nodeSelector | indent 8 }}
{{- end }}
{{- if .Values.affinity }}
affinity:
{{ toYaml .Values.affinity | indent 8 }}
{{- end }}
{{- if .Values.tolerations }}
tolerations:
{{ toYaml .Values.tolerations | indent 8 }}
{{- end }}
containers:
- name: {{ template "redmine.fullname" . }}
image: {{ template "redmine.image" . }}

View File

@@ -218,6 +218,26 @@ ingress:
annotations:
# kubernetes.io/ingress.class: nginx
## Node labels for pod assignment
## Ref: https://kubernetes.io/docs/user-guide/node-selection/
##
nodeSelector: {}
## Tolerations for pod assignment
## Ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
##
tolerations: {}
## Affinity for pod assignment
## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
##
affinity: {}
## Pod annotations
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
##
podAnnotations: {}
## Enable persistence using Persistent Volume Claims
## ref: http://kubernetes.io/docs/user-guide/persistent-volumes/
##