Skip to content

Commit 3429830

Browse files
authored
Add allow all netpol (#3)
2 parents 5a5994b + ace19f8 commit 3429830

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

kubernetes/netpols/allow-all.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
apiVersion: networking.k8s.io/v1
2+
kind: NetworkPolicy
3+
metadata:
4+
name: allow-all
5+
spec:
6+
podSelector: {}
7+
ingress:
8+
- from: []
9+
egress:
10+
- to: []
11+
policyTypes:
12+
- Ingress
13+
- Egress

0 commit comments

Comments
 (0)