mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-05 15:37:19 +00:00
37 lines
641 B
YAML
37 lines
641 B
YAML
|
apiVersion: networking.k8s.io/v1
|
||
|
kind: NetworkPolicy
|
||
|
metadata:
|
||
|
name: test-network-policy
|
||
|
labels:
|
||
|
originalLabel : isHere
|
||
|
namespace: default
|
||
|
spec:
|
||
|
podSelector:
|
||
|
matchLabels:
|
||
|
role: db
|
||
|
policyTypes:
|
||
|
- Ingress
|
||
|
- Egress
|
||
|
ingress:
|
||
|
- from:
|
||
|
- ipBlock:
|
||
|
cidr: 172.17.0.0/16
|
||
|
except:
|
||
|
- 172.17.129.0/24
|
||
|
- namespaceSelector:
|
||
|
matchLabels:
|
||
|
project: myproject
|
||
|
- podSelector:
|
||
|
matchLabels:
|
||
|
role: frontend
|
||
|
ports:
|
||
|
- protocol: TCP
|
||
|
port: 6379
|
||
|
egress:
|
||
|
- to:
|
||
|
- ipBlock:
|
||
|
cidr: 10.0.0.0/24
|
||
|
ports:
|
||
|
- protocol: TCP
|
||
|
port: 5978
|