About network policy

    In a cluster using a network plugin that supports Kubernetes network policy, network isolation is controlled entirely by objects. In OKD 4.13, OpenShift SDN supports using network policy in its default network isolation mode.

    By default, all pods in a project are accessible from other pods and network endpoints. To isolate one or more pods in a project, you can create NetworkPolicy objects in that project to indicate the allowed incoming connections. Project administrators can create and delete NetworkPolicy objects within their own project.

    If a pod is matched by selectors in one or more NetworkPolicy objects, then the pod will accept only connections that are allowed by at least one of those NetworkPolicy objects. A pod that is not selected by any NetworkPolicy objects is fully accessible.

    The following example NetworkPolicy objects demonstrate supporting different scenarios:

    • Deny all traffic:

      To make a project deny by default, add a NetworkPolicy object that matches all pods but accepts no traffic:

    • Only allow connections from the OKD Ingress Controller:

      To make a project allow only connections from the OKD Ingress Controller, add the following NetworkPolicy object.

      1. apiVersion: networking.k8s.io/v1
      2. kind: NetworkPolicy
      3. metadata:
      4. name: allow-from-openshift-ingress
      5. spec:
      6. ingress:
      7. - from:
      8. - namespaceSelector:
      9. matchLabels:
      10. network.openshift.io/policy-group: ingress
      11. podSelector: {}
      12. policyTypes:
      13. - Ingress
    • Only accept connections from pods within a project:

      To make pods accept connections from other pods in the same project, but reject all other connections from pods in other projects, add the following NetworkPolicy object:

      1. kind: NetworkPolicy
      2. apiVersion: networking.k8s.io/v1
      3. metadata:
      4. name: allow-same-namespace
      5. spec:
      6. podSelector: {}
      7. ingress:
      8. - from:
      9. - podSelector: {}
    • Only allow HTTP and HTTPS traffic based on pod labels:

    • Accept connections by using both namespace and pod selectors:

      To match network traffic by combining namespace and pod selectors, you can use a NetworkPolicy object similar to the following:

      1. kind: NetworkPolicy
      2. apiVersion: networking.k8s.io/v1
      3. name: allow-pod-and-namespace-both
      4. spec:
      5. podSelector:
      6. matchLabels:
      7. name: test-pods
      8. ingress:
      9. - from:
      10. matchLabels:
      11. project: project_name
      12. podSelector:
      13. matchLabels:
      14. name: test-pods

    NetworkPolicy objects are additive, which means you can combine multiple NetworkPolicy objects together to satisfy complex network requirements.

    For example, for the NetworkPolicy objects defined in previous samples, you can define both allow-same-namespace and allow-http-and-https policies within the same project. Thus allowing the pods with the label role=frontend, to accept any connection allowed by each policy. That is, connections on any port from pods in the same namespace, and connections on ports 80 and 443 from pods in any namespace.

    Use the following NetworkPolicy to allow external traffic regardless of the router configuration:

    1. apiVersion: networking.k8s.io/v1
    2. kind: NetworkPolicy
    3. metadata:
    4. name: allow-from-router
    5. spec:
    6. ingress:
    7. - from:
    8. - namespaceSelector:
    9. matchLabels:
    10. policy-group.network.openshift.io/ingress:""(1)
    11. podSelector: {}
    12. policyTypes:
    13. - Ingress

    Using the allow-from-hostnetwork network policy

    Add the following allow-from-hostnetwork NetworkPolicy object to direct traffic from the host network pods:

    Use a network policy to isolate pods that are differentiated from one another by labels within a namespace.

    It is inefficient to apply NetworkPolicy objects to large numbers of individual pods in a single namespace. Pod labels do not exist at the IP address level, so a network policy generates a separate Open vSwitch (OVS) flow rule for every possible link between every pod selected with a podSelector.

    For example, if the spec podSelector and the ingress podSelector within a NetworkPolicy object each match 200 pods, then 40,000 (200*200) OVS flow rules are generated. This might slow down a node.

    When designing your network policy, refer to the following guidelines:

    • Reduce the number of OVS flow rules by using namespaces to contain groups of pods that need to be isolated.

      NetworkPolicy objects that select a whole namespace, by using the namespaceSelector or an empty podSelector, generate only a single OVS flow rule that matches the VXLAN virtual network ID (VNID) of the namespace.

    • Keep the pods that do not need to be isolated in their original namespace, and move the pods that require isolation into one or more different namespaces.

    When designing your network policy, refer to the following guidelines:

    • For network policies with the same spec.podSelector spec, it is more efficient to use one network policy with multiple ingress or egress rules, than multiple network policies with subsets of ingress or egress rules.

    • Every ingress or rule based on the podSelector or namespaceSelector spec generates the number of OVS flows proportional to number of pods selected by network policy + number of pods selected by ingress or egress rule. Therefore, it is preferable to use the podSelector or namespaceSelector spec that can select as many pods as you need in one rule, instead of creating individual rules for every pod.

      For example, the following policy contains two rules:

      1. apiVersion: networking.k8s.io/v1
      2. kind: NetworkPolicy
      3. metadata:
      4. name: test-network-policy
      5. spec:
      6. ingress:
      7. - from:
      8. - podSelector:
      9. matchLabels:
      10. role: frontend
      11. - from:
      12. - podSelector:
      13. matchLabels:
      14. role: backend

      The following policy expresses those same two rules as one:

      1. apiVersion: networking.k8s.io/v1
      2. kind: NetworkPolicy
      3. metadata:
      4. name: test-network-policy
      5. spec:
      6. podSelector: {}
      7. ingress:
      8. - from:
      9. - podSelector:
      10. matchExpressions:
      11. - {key: role, operator: In, values: [frontend, backend]}

      The same guideline applies to the spec.podSelector spec. If you have the same ingress or egress rules for different network policies, it might be more efficient to create one network policy with a common spec.podSelector spec. For example, the following two policies have different rules:

      The following network policy expresses those same two rules as one:

      1. metadata:
      2. name: policy3
      3. spec:
      4. podSelector:
      5. matchExpressions:
      6. - {key: role, operator: In, values: [db, client]}
      7. ingress:
      8. - from:
      9. - podSelector:
      10. role: frontend

      You can apply this optimization when only multiple selectors are expressed as one. In cases where selectors are based on different labels, it may not be possible to apply this optimization. In those cases, consider applying some new labels for network policy optimization specifically.