Kubernetes - Networking
Given this NetworkPolicy snippet, what will be the effect on pod traffic?
```yaml
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
name: allow-web-egress
spec:
podSelector:
matchLabels:
role: web
policyTypes:
- Egress
egress:
- to:
- ipBlock:
cidr: 10.0.0.0/24
ports:
- protocol: TCP
port: 80
```
