diff options
Diffstat (limited to 'tools/monitoring/templates')
-rw-r--r-- | tools/monitoring/templates/network-policy.yaml | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/tools/monitoring/templates/network-policy.yaml b/tools/monitoring/templates/network-policy.yaml deleted file mode 100644 index b50c3af..0000000 --- a/tools/monitoring/templates/network-policy.yaml +++ /dev/null @@ -1,57 +0,0 @@ -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: {} ---- -apiVersion: networking.k8s.io/v1 -kind: NetworkPolicy -metadata: - name: allow-ingress-to-grafana - namespace: monitoring -spec: - podSelector: - matchLabels: - app.kubernetes.io/name: grafana - policyTypes: - - Ingress - ingress: - - from: - - namespaceSelector: - matchLabels: - name: kube-system - - podSelector: - matchLabels: - app: traefik - - {} ---- -apiVersion: networking.k8s.io/v1 -kind: NetworkPolicy -metadata: - name: allow-external-ingress-to-grafana - namespace: monitoring -spec: - podSelector: - matchLabels: - app.kubernetes.io/name: grafana - policyTypes: - - Ingress - ingress: - - from: - - ipBlock: - cidr: 0.0.0.0/0 - egress: - - to: - - podSelector: {} - |