From 226ea868958c95909b975cd3f5f219b262fc4e20 Mon Sep 17 00:00:00 2001 From: LucasBoisserie Date: Thu, 30 Apr 2020 01:04:20 +0200 Subject: [PATCH] Add docs for ingress with path (#22143) Signed-off-by: LucasBoisserie --- stable/grafana/Chart.yaml | 2 +- stable/grafana/README.md | 16 ++++++++++++++++ 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/stable/grafana/Chart.yaml b/stable/grafana/Chart.yaml index a6c25fa958bc..d00818c3c271 100644 --- a/stable/grafana/Chart.yaml +++ b/stable/grafana/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: grafana -version: 5.0.18 +version: 5.0.19 appVersion: 6.7.3 kubeVersion: "^1.8.0-0" description: The leading tool for querying and visualizing time series and metrics. diff --git a/stable/grafana/README.md b/stable/grafana/README.md index cabaf71b7a76..3083c1ce8c77 100644 --- a/stable/grafana/README.md +++ b/stable/grafana/README.md @@ -168,6 +168,22 @@ You have to add --force to your helm upgrade command as the labels of the chart | `downloadDashboardsImage.pullPolicy` | Curl docker image pull policy | `IfNotPresent` | | `namespaceOverride` | Override the deployment namespace | `""` (`Release.Namespace`) | +### Example ingress with path + +With grafana 6.3 and above +```yaml +grafana.ini: + server: + domain: monitoring.example.com + root_url: "%(protocol)s://%(domain)s/grafana" + serve_from_sub_path: true +ingress: + enabled: true + hosts: + - "monitoring.example.com" + path: "/grafana" +``` + ### Example of extraVolumeMounts ```yaml