@@ -0,0 +1,7 @@
+apiVersion: v2
+
+name: influx-grafana
+description: A Helm chart for Kubernetes
+type: application
+version: 0.1.0
+appVersion: 0.1.0
@@ -0,0 +1,4 @@
+#!/bin/sh
+helm install influxdb bitnami/influxdb -n monitoring -f values.yaml
+helm install grafana bitnami/grafana -n monitoring
@@ -0,0 +1,18 @@
+apiVersion: networking.k8s.io/v1
+kind: Ingress
+annotations:
+metadata:
+ name: influxdb
+spec:
+ #ingressClassName: nginx # change this to your Ingressclass you have created in your cluster
+ rules:
+ - host: influx.local
+ http:
+ paths:
+ - backend:
+ service:
+ name: influx-service
+ port:
+ number: 8086
+ path: /
+ pathType: Prefix
@@ -0,0 +1,8 @@
+auth.user.bucket: telegraf
+auth.enabled: true
+auth.admin.username: admin
+auth.admin.password: admin
+auth.user.username: telegraf
+auth.user.password: admin
+image.debug: true