Difference between revisions of "Kubernetes network policies"

From wikieduonline
Jump to navigation Jump to search
Line 19: Line 19:
 
     - Ingress
 
     - Ingress
 
     - Egress
 
     - Egress
   ingress:
+
   [[ingress:]]
 
     - from:
 
     - from:
 
         - ipBlock:
 
         - ipBlock:
Line 34: Line 34:
 
         - protocol: TCP
 
         - protocol: TCP
 
           port: 6379
 
           port: 6379
   egress:
+
   [[egress:]]
 
     - to:  
 
     - to:  
 
       -  ipBlock:
 
       -  ipBlock:

Revision as of 16:29, 9 July 2022

https://kubernetes.io/docs/concepts/services-networking/network-policies/#networkpolicy-resource Official example:


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


Related

See also

Advertising: