From dcdef4d0c2b66190de0b6ecd43d0182c59f69d33 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?S=C3=B6ren=20Henning?= <post@soeren-henning.de>
Date: Mon, 18 May 2020 11:20:10 +0200
Subject: [PATCH] Add Grafana NodePort, fix #31

---
 execution/README.md                          | 4 ++--
 execution/infrastructure/grafana/values.yaml | 3 +++
 2 files changed, 5 insertions(+), 2 deletions(-)
 create mode 100644 execution/infrastructure/grafana/values.yaml

diff --git a/execution/README.md b/execution/README.md
index 1e26df155..ae1c316c2 100644
--- a/execution/README.md
+++ b/execution/README.md
@@ -37,10 +37,10 @@ are used. See the corresponding sections below for how to install them.
 ### Grafana
 
 As with Prometheus, we suggest to create a dedicated Grafana instance. Grafana
-can be installed with Helm:
+with our default configuration can be installed with Helm:
 
 ```sh
-helm install grafana stable/grafana
+helm install grafana stable/grafana -f -f infrastructure/grafana/values.yaml
 ```
 
 The official [Grafana Helm Chart repository](https://github.com/helm/charts/tree/master/stable/grafana)
diff --git a/execution/infrastructure/grafana/values.yaml b/execution/infrastructure/grafana/values.yaml
new file mode 100644
index 000000000..74b2c8a71
--- /dev/null
+++ b/execution/infrastructure/grafana/values.yaml
@@ -0,0 +1,3 @@
+service:
+  nodePort: 31199
+  type: NodePort
\ No newline at end of file
-- 
GitLab