From 0fb5f5a4f25814c523a4cda72ea5d6fde3ea70f0 Mon Sep 17 00:00:00 2001 From: Junya Hayashi Date: Sat, 10 Feb 2018 05:34:51 +0900 Subject: [PATCH] [stable/grafana] change default readinessProbe to /api/health (#3343) * [stable/grafana] change default readinessProbe to /api/health accessing to `/login` generates session file each time, while `/api/health` doesn't. See: https://github.com/grafana/grafana/issues/3824 * [stable/grafana] increment chart version to 0.5.6 --- stable/grafana/Chart.yaml | 2 +- stable/grafana/README.md | 2 +- stable/grafana/values.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/stable/grafana/Chart.yaml b/stable/grafana/Chart.yaml index 6594abaf9d..36e0ff45f2 100755 --- a/stable/grafana/Chart.yaml +++ b/stable/grafana/Chart.yaml @@ -1,5 +1,5 @@ name: grafana -version: 0.6.1 +version: 0.6.2 description: The leading tool for querying and visualizing time series and metrics. home: https://grafana.net icon: https://raw.githubusercontent.com/grafana/grafana/master/public/img/logo_transparent_400x.png diff --git a/stable/grafana/README.md b/stable/grafana/README.md index 2d52bb3afd..b12c356c53 100644 --- a/stable/grafana/README.md +++ b/stable/grafana/README.md @@ -40,7 +40,7 @@ The command removes all the Kubernetes components associated with the chart and | `server.persistentVolume.accessMode` | ReadWriteOnce or ReadOnly | [ReadWriteOnce] | | `server.persistentVolume.existingClaim` | Existing persistent volume claim | null | | `server.persistentVolume.subPath` | Subdirectory of pvc to mount | null | -| `server.readinessProbe` | Server readiness probe | httpGet: {path: /login, port: 3000}, initialDelaySeconds: 30, timeoutSeconds: 30 | +| `server.readinessProbe` | Server readiness probe | httpGet: {path: /api/health, port: 3000}, initialDelaySeconds: 30, timeoutSeconds: 30 | | `server.resources` | Server resource requests and limits | requests: {cpu: 100m, memory: 100Mi} | | `server.tolerations` | node taints to tolerate (requires Kubernetes >=1.6) | null | | `server.service.annotations` | Service annotations | null | diff --git a/stable/grafana/values.yaml b/stable/grafana/values.yaml index e9000668a7..35ec0dc1c5 100644 --- a/stable/grafana/values.yaml +++ b/stable/grafana/values.yaml @@ -114,7 +114,7 @@ server: ## readinessProbe: httpGet: - path: /login + path: /api/health port: 3000 initialDelaySeconds: 30 timeoutSeconds: 30