about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--tools/monitoring/templates/network-policy.yaml17
1 files changed, 17 insertions, 0 deletions
diff --git a/tools/monitoring/templates/network-policy.yaml b/tools/monitoring/templates/network-policy.yaml
new file mode 100644
index 0000000..c7696cb
--- /dev/null
+++ b/tools/monitoring/templates/network-policy.yaml
@@ -0,0 +1,17 @@
+apiVersion: networking.k8s.io/v1
+kind: NetworkPolicy
+metadata:
+  name: allow-all-internal
+  namespace: monitoring
+spec:
+  podSelector: {}
+  policyTypes:
+  - Ingress
+  - Egress
+  ingress:
+  - from:
+    - podSelector: {}
+  egress:
+  - to:
+    - podSelector: {}
+