Update networkpolicy.yaml

Harmonizing indent of the yaml to be equal in formatting to other code examples in network-policies.md
pull/44503/head
mhash17 2023-12-24 20:47:32 +01:00 committed by GitHub
parent 7b4c3a52db
commit f04d1d603d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 22 additions and 22 deletions

View File

@ -8,28 +8,28 @@ spec:
matchLabels: matchLabels:
role: db role: db
policyTypes: policyTypes:
- Ingress - Ingress
- Egress - Egress
ingress: ingress:
- from: - from:
- ipBlock: - ipBlock:
cidr: 172.17.0.0/16 cidr: 172.17.0.0/16
except: except:
- 172.17.1.0/24 - 172.17.1.0/24
- namespaceSelector: - namespaceSelector:
matchLabels: matchLabels:
project: myproject project: myproject
- podSelector: - podSelector:
matchLabels: matchLabels:
role: frontend role: frontend
ports: ports:
- protocol: TCP - protocol: TCP
port: 6379 port: 6379
egress: egress:
- to: - to:
- ipBlock: - ipBlock:
cidr: 10.0.0.0/24 cidr: 10.0.0.0/24
ports: ports:
- protocol: TCP - protocol: TCP
port: 5978 port: 5978