Fix liveness probes and update Minio version (#10704)

Signed-off-by: Nitish Tiwari <nitish@minio.io>
This commit is contained in:
Nitish Tiwari
2019-01-17 04:21:27 -08:00
committed by Kubernetes Prow Robot
parent 296bd9909d
commit ddc20b31f6
5 changed files with 10 additions and 8 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
apiVersion: v1
description: Minio is a high performance distributed object storage server, designed for large-scale private cloud infrastructure.
name: minio
version: 2.3.4
appVersion: RELEASE.2018-12-06T01-27-43Z
version: 2.3.5
appVersion: RELEASE.2019-01-10T00-21-20Z
keywords:
- storage
- object-storage
+2 -2
View File
@@ -93,10 +93,10 @@ The following table lists the configurable parameters of the Minio chart and the
| Parameter | Description | Default |
|----------------------------|-------------------------------------|---------------------------------------------------------|
| `image.repository` | Image repository | `minio/minio` |
| `image.tag` | Minio image tag. Possible values listed [here](https://hub.docker.com/r/minio/minio/tags/).| `RELEASE.2018-11-22T02-51-56Z`|
| `image.tag` | Minio image tag. Possible values listed [here](https://hub.docker.com/r/minio/minio/tags/).| `RELEASE.2019-01-10T00-21-20Z`|
| `image.pullPolicy` | Image pull policy | `IfNotPresent` |
| `mcImage.repository` | Client image repository | `minio/mc` |
| `mcImage.tag` | mc image tag. Possible values listed [here](https://hub.docker.com/r/minio/mc/tags/).| `RELEASE.2018-11-06T01-12-20Z`|
| `mcImage.tag` | mc image tag. Possible values listed [here](https://hub.docker.com/r/minio/mc/tags/).| `RELEASE.2019-01-10T00-38-22Z`|
| `mcImage.pullPolicy` | mc Image pull policy | `IfNotPresent` |
| `ingress.enabled` | Enables Ingress | `false` |
| `ingress.annotations` | Ingress annotations | `{}` |
+2 -2
View File
@@ -129,9 +129,9 @@ spec:
port: service
{{- if .Values.tls.enabled }}
scheme: HTTPS
{{ else }}
scheme: HTTP
{{- end }}
path: /minio/health/live
port: service
initialDelaySeconds: {{ .Values.livenessProbe.initialDelaySeconds }}
periodSeconds: {{ .Values.livenessProbe.periodSeconds }}
timeoutSeconds: {{ .Values.livenessProbe.timeoutSeconds }}
+2
View File
@@ -88,6 +88,8 @@ spec:
port: service
{{- if .Values.tls.enabled }}
scheme: HTTPS
{{ else }}
scheme: HTTP
{{- end }}
initialDelaySeconds: {{ .Values.livenessProbe.initialDelaySeconds }}
periodSeconds: {{ .Values.livenessProbe.periodSeconds }}
+2 -2
View File
@@ -6,7 +6,7 @@ clusterDomain: cluster.local
##
image:
repository: minio/minio
tag: RELEASE.2018-12-06T01-27-43Z
tag: RELEASE.2019-01-10T00-21-20Z
pullPolicy: IfNotPresent
## Set default image, imageTag, and imagePullPolicy for the `mc` (the minio
@@ -14,7 +14,7 @@ image:
##
mcImage:
repository: minio/mc
tag: RELEASE.2018-12-05T22-59-07Z
tag: RELEASE.2019-01-10T00-38-22Z
pullPolicy: IfNotPresent
## minio server mode, i.e. standalone or distributed.