blob: 9e8bd6543511479ab3232b6b8f40a3e303f99ea7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
name: allow-all-internal
namespace: monitoring
spec:
podSelector: {}
policyTypes:
- Ingress
- Egress
ingress:
- from:
- podSelector: {}
- from:
- namespaceSelector:
matchLabels:
name: monitoring
---
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
name: allow-ingress-to-grafana
namespace: monitoring
spec:
podSelector:
matchLabels:
app.kubernetes.io/name: grafana
ingress:
- from:
- namespaceSelector:
matchLabels:
name: kube-system
- podSelector:
matchLabels:
app: traefik
policyTypes:
- Ingress
|