mirror of
https://github.com/JamesTurland/JimsGarage.git
synced 2024-11-25 01:10:22 +00:00
21 lines
345 B
YAML
21 lines
345 B
YAML
|
apiVersion: networking.k8s.io/v1
|
||
|
kind: NetworkPolicy
|
||
|
metadata:
|
||
|
name: multi-port-egress
|
||
|
namespace: default
|
||
|
spec:
|
||
|
podSelector:
|
||
|
matchLabels:
|
||
|
role: db
|
||
|
policyTypes:
|
||
|
- Egress
|
||
|
egress:
|
||
|
- to:
|
||
|
- ipBlock:
|
||
|
cidr: 10.0.0.0/24
|
||
|
ports:
|
||
|
- protocol: TCP
|
||
|
port: 32000
|
||
|
endPort: 32768
|
||
|
|