[stable/minio] Make pod annotations configurable (#11588)

Signed-off-by: Heiko Nickerl <dev@heiko-nickerl.com>
This commit is contained in:
Heiko Nickerl
2019-02-26 17:18:39 -08:00
committed by Kubernetes Prow Robot
parent f5b7f44e3d
commit bb384f61b3
5 changed files with 13 additions and 1 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
apiVersion: v1
description: Minio is a high performance distributed object storage server, designed for large-scale private cloud infrastructure.
name: minio
version: 2.4.5
version: 2.4.6
appVersion: RELEASE.2019-02-12T21-58-47Z
keywords:
- storage
+1
View File
@@ -126,6 +126,7 @@ The following table lists the configurable parameters of the Minio chart and the
| `nodeSelector` | Node labels for pod assignment | `{}` |
| `affinity` | Affinity settings for pod assignment | `{}` |
| `tolerations` | Toleration labels for pod assignment | `[]` |
| `podAnnotations` | Pod annotations | `{}` |
| `tls.enabled` | Enable TLS for Minio server | `false` |
| `tls.certSecret` | Kubernetes Secret with `public.crt` and `private.key` files. | `""` |
| `livenessProbe.initialDelaySeconds` | Delay before liveness probe is initiated | `5` |
+4
View File
@@ -39,6 +39,10 @@ spec:
labels:
app: {{ template "minio.name" . }}
release: {{ .Release.Name }}
{{- if .Values.podAnnotations }}
annotations:
{{ toYaml .Values.podAnnotations | indent 8 }}
{{- end }}
spec:
{{- if .Values.priorityClassName }}
priorityClassName: "{{ .Values.priorityClassName }}"
+4
View File
@@ -24,6 +24,10 @@ spec:
labels:
app: {{ template "minio.name" . }}
release: {{ .Release.Name }}
{{- if .Values.podAnnotations }}
annotations:
{{ toYaml .Values.podAnnotations | indent 8 }}
{{- end }}
spec:
{{- if .Values.priorityClassName }}
priorityClassName: "{{ .Values.priorityClassName }}"
+3
View File
@@ -123,6 +123,9 @@ nodeSelector: {}
tolerations: []
affinity: {}
# Additational pod annotations
podAnnotations: {}
## Liveness and Readiness probe values.
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/
livenessProbe: