Network Policy

If you are running Cilium on Kubernetes, you can benefit from Kubernetes distributing policies for you. In this mode, Kubernetes is responsible for distributing the policies across all nodes and Cilium will automatically apply the policies. Multiple formats are available to configure network policies natively with Kubernetes:

Cilium supports running multiple of these policy types at the same time. However caution should be applied when using multiple policy types at the same time, as it can be confusing to understand the complete set of allowed traffic across multiple policy types. If close attention is not applied this may lead to unintended policy allow behavior.

NetworkPolicy

For more information, see the official NetworkPolicy documentation.

Note

By default, ipBlock rules in NetworkPolicy do not match intra-cluster IPs (such as Pod or Node IPs). Setting the –policy-cidr-match-mode option (or equivalent Helm value policyCIDRMatchMode) to pods or nodes allows ipBlock rules to match intra-cluster IPs.

Kubernetes ClusterNetworkPolicy

Support for the Kubernetes ClusterNetworkPolicy (KCNP) is available starting with Cilium 1.20. For more information, see the official ClusterNetworkPolicy documentation.

Enabling KCNP

Support must be enabled by setting the --enable-k8s-cluster-network-policy flag to true (or equivalent Helm value k8sClusterNetworkPolicy.enabled=true). You also must install the Custom Resource Definition (CRD) from sigs.k8s.io/network-policy-api:

$ kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/network-policy-api/release-0.2/config/crd/standard/policy.networking.k8s.io_clusternetworkpolicies.yaml

The KCNP API specifies that CIDR rules must also match pod and node IPs. For full conformance, set the –policy-cidr-match-mode flag to pods,nodes.

Tiers

The KCNP API uses tiers as top-level groupings for policy evaluation. Policy rules are evaluated in the following order:

  1. Admin tier: High-priority security rules set by cluster administrators.

  2. NetworkPolicy tier: Workload and cluster rules, including standard NetworkPolicy, CiliumNetworkPolicy, and CiliumClusterwideNetworkPolicy.

  3. Baseline tier: Default guardrails set by cluster administrators.

A Kubernetes ClusterNetworkPolicy can be assigned to either the Admin or Baseline tier. Rules in the Admin tier take precedence over all policies at the NetworkPolicy tier level, including CiliumClusterwideNetworkPolicy, CiliumNetworkPolicy, and standard NetworkPolicy resources and cannot be overridden by them. Keep this in mind when migrating from CiliumClusterwideNetworkPolicy to Kubernetes ClusterNetworkPolicy.

CiliumNetworkPolicy

The CiliumNetworkPolicy is very similar to the standard NetworkPolicy. The purpose is to provide the functionality which is not yet supported in NetworkPolicy. Ideally all of the functionality will be merged into the standard resource format and this CRD will no longer be required.

The raw specification of the resource in Go looks like this:

type CiliumNetworkPolicy struct {
        // +deepequal-gen=false
        metav1.TypeMeta `json:",inline"`
        // +deepequal-gen=false
        metav1.ObjectMeta `json:"metadata"`

        // Spec is the desired Cilium specific rule specification.
        Spec *api.Rule `json:"spec,omitempty"`

        // Specs is a list of desired Cilium specific rule specification.
        Specs api.Rules `json:"specs,omitempty"`

        // Status is the status of the Cilium policy rule
        //
        // +deepequal-gen=false
        // +kubebuilder:validation:Optional
        Status CiliumNetworkPolicyStatus `json:"status"`
}
Metadata

Describes the policy. This includes:

  • Name of the policy, unique within a namespace

  • Namespace of where the policy has been injected into

  • Set of labels to identify a resource in Kubernetes

Spec

Field which contains a Rule Basics.

Specs

Field which contains a list of Rule Basics. This field is useful if multiple rules must be removed or added automatically.

Status

Provides visibility into whether the policy has been successfully applied.

Examples

See Layer 3 Policies, Layer 4 Policies and Layer 7 Policies for detailed lists of example policies.

CiliumClusterwideNetworkPolicy

CiliumClusterwideNetworkPolicy is similar to CiliumNetworkPolicy, except (1) policies defined by CiliumClusterwideNetworkPolicy are non-namespaced and are cluster-scoped, and (2) it enables the use of Node Selector. Internally the policy is identical to CiliumNetworkPolicy and thus the effects of this policy specification are also same.

The raw specification of the resource in Go looks like this:

type CiliumClusterwideNetworkPolicy struct {
        // Spec is the desired Cilium specific rule specification.
        Spec *api.Rule

        // Specs is a list of desired Cilium specific rule specification.
        Specs api.Rules

        // Status is the status of the Cilium policy rule.
        //
        // The reason this field exists in this structure is due a bug in the k8s
        // code-generator that doesn't create a `UpdateStatus` method because the
        // field does not exist in the structure.
        //
        // +kubebuilder:validation:Optional
        Status CiliumNetworkPolicyStatus
}