From ddc20b31f6c8f339926e2fd672e66459ce082cfc Mon Sep 17 00:00:00 2001 From: Nitish Tiwari Date: Thu, 17 Jan 2019 17:51:27 +0530 Subject: [PATCH] Fix liveness probes and update Minio version (#10704) Signed-off-by: Nitish Tiwari --- stable/minio/Chart.yaml | 4 ++-- stable/minio/README.md | 4 ++-- stable/minio/templates/deployment.yaml | 4 ++-- stable/minio/templates/statefulset.yaml | 2 ++ stable/minio/values.yaml | 4 ++-- 5 files changed, 10 insertions(+), 8 deletions(-) diff --git a/stable/minio/Chart.yaml b/stable/minio/Chart.yaml index f4388228d3..638981f5d7 100755 --- a/stable/minio/Chart.yaml +++ b/stable/minio/Chart.yaml @@ -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 diff --git a/stable/minio/README.md b/stable/minio/README.md index 1bd259ac47..c9e7391134 100755 --- a/stable/minio/README.md +++ b/stable/minio/README.md @@ -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 | `{}` | diff --git a/stable/minio/templates/deployment.yaml b/stable/minio/templates/deployment.yaml index b9fd73682a..27e3bf86a2 100644 --- a/stable/minio/templates/deployment.yaml +++ b/stable/minio/templates/deployment.yaml @@ -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 }} diff --git a/stable/minio/templates/statefulset.yaml b/stable/minio/templates/statefulset.yaml index fd07faa811..7fe08ef9f9 100644 --- a/stable/minio/templates/statefulset.yaml +++ b/stable/minio/templates/statefulset.yaml @@ -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 }} diff --git a/stable/minio/values.yaml b/stable/minio/values.yaml index fc3d52a654..4807cb1805 100755 --- a/stable/minio/values.yaml +++ b/stable/minio/values.yaml @@ -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.