Difference between revisions of "Kind: NetworkPolicy"

From wikieduonline
Jump to navigation Jump to search
(Changed redirect target from Kind (Kubernetes) to NetworkPolicy)
Tag: Redirect target changed
 
(9 intermediate revisions by 2 users not shown)
Line 1: Line 1:
#redirect [[NetworkPolicy]]
+
{{lc}}
 +
[[Kubernetes network policies]]
 +
 
 +
[[kubectl get networkpolicy]]
 +
[[kubectl describe networkpolicy]]
 +
 
 +
== Official example ==
 +
{{kind_networkpolicy_official}}
 +
 
 +
== Related ==
 +
* [[Kyverno]]
 +
 
 +
 
 +
== See also ==
 +
* {{kubectl networkpolicy}}
 +
* {{Kubernetes networking}}
 +
 
 +
[[Category:K8s]]

Latest revision as of 17:18, 13 May 2023

Kubernetes network policies

kubectl get networkpolicy
kubectl describe networkpolicy

Official example[edit]

 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[edit]


See also[edit]

Advertising: