这是示例 NetworkPolicy,它允许连接到具有标签的 pod,hello
并允许 53 TCP 和 UDP 上的端口连接并阻止所有端口。
我如何使它允许所有端口并阻止 53 TCP 和 UDP(出口)。
kind: NetworkPolicy
apiVersion: networking.k8s.io/v1
metadata:
name: foo-allow-to-hello
spec:
policyTypes:
- Egress
podSelector:
matchLabels:
app: foo
egress:
- to:
- podSelector:
matchLabels:
app: hello
- ports:
- port: 53
protocol: TCP
- port: 53
protocol: UDP