Created
April 24, 2025 15:11
-
-
Save chadmcrowell/2fcd3f249de0ecf1cf98fe5299071372 to your computer and use it in GitHub Desktop.
Test Network Policy - Acing The CKA
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: networking.k8s.io/v1 | |
kind: NetworkPolicy | |
metadata: | |
name: test-network-policy | |
namespace: default | |
spec: | |
podSelector: | |
matchLabels: | |
role: db | |
policyTypes: | |
- Ingress | |
- Egress | |
ingress: | |
- from: | |
- ipBlock: | |
cidr: 172.17.0.0/16 | |
except: | |
- 172.17.1.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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment