about summary refs log tree commit diff
path: root/tools/prometheus
diff options
context:
space:
mode:
Diffstat (limited to 'tools/prometheus')
-rw-r--r--tools/prometheus/templates/network-policy.yaml21
1 files changed, 21 insertions, 0 deletions
diff --git a/tools/prometheus/templates/network-policy.yaml b/tools/prometheus/templates/network-policy.yaml
new file mode 100644
index 0000000..981d050
--- /dev/null
+++ b/tools/prometheus/templates/network-policy.yaml
@@ -0,0 +1,21 @@
+apiVersion: networking.k8s.io/v1
+kind: NetworkPolicy
+metadata:
+  name: allow-grafana-to-prometheus
+  namespace: monitoring
+spec:
+  podSelector:
+    matchLabels:
+      app.kubernetes.io/name: prometheus
+  policyTypes:
+    - Ingress
+  ingress:
+    - from:
+        - podSelector:
+            matchLabels:
+              app.kubernetes.io/name: grafana
+      ports:
+        - protocol: TCP
+          port: 9090
+        - protocol: TCP
+          port: 80