CoreDNS VS cni

Compare CoreDNS vs cni and see what are their differences.

cni

Container Network Interface - networking for Linux containers (by containernetworking)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
CoreDNS cni
41 13
11,776 5,298
1.4% 1.1%
9.3 7.6
9 days ago 9 days ago
Go Go
Apache License 2.0 Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

CoreDNS

Posts with mentions or reviews of CoreDNS. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-10-08.

cni

Posts with mentions or reviews of cni. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-08-15.
  • Kubernetes Architecture
    4 projects | dev.to | 15 Aug 2023
    The CNI is language-agnostic and there are many different plugins available.
  • Creating Kubernetes Cluster With CRI-O
    7 projects | dev.to | 30 Jul 2023
    Read more about the architecture of CRI-O here. The networking of the pod is set up through CNI, and CRI-O can be used with any CNI plugin.
  • Kubernetes traffic discovery
    3 projects | dev.to | 4 Jun 2023
    In generic Kubernetes network policies, there is no action field. The Calico CNI plugin (Kubernetes network plugin that implements the Container Network Interface) provides this functionality, and in particular provides logging even for allowed traffic. And this worked when we tried it in our test clusters and in our own back end.
  • Docker Container to get IP by external DHCP
    1 project | /r/docker | 7 Apr 2023
    There is a CNI spec: https://github.com/containernetworking/cni/blob/main/SPEC.md which allows for custom network plugins. Thats how AWS/EKS nodes are able to assign VPC routable IPs to containers running on them.
  • Minikube now supports rootless podman driver for running Kubernetes
    11 projects | news.ycombinator.com | 22 Jun 2022
    um, they aren't missing anything (but see below). they are k8s.

    so if you want to get the genuine original mainline experience you go to the project's github repo, they have releases, and mention that the detailed changelog has links to the binaries. yeey. (https://github.com/kubernetes/kubernetes/blob/master/CHANGEL... .. the client is the kubectl binary, the server has the control plane components the node binaries have the worker node stuff), you then have the option to set those up according to the documentation (generate TLS certs, specify the IP address range for pods (containers), install dependencies like etcd, and a CNI compatible container network layer provider -- if you have setup overlay networking eg. VXLAN or geneve or something fancy with openvswitch's OVN -- then the reference CNI plugin is probably sufficient)

    at the end of this process you'll have the REST API (kube-apiserver) up and running and you can start submitting jobs (that will be persisted into etcd, eventually picked up by the scheduler control loop that calculates what should run where and persists it back to etcd, then a control loop on a particular worker will notice that something new is assigned to it, and it'll do the thing, allocate a pod, call CNI to allocate IP, etc.)

    of course if you don't want to do all this by hand you can use a distribution that helps you with setup.

    microk8s is a low-memory low-IO k8s distro by Canonical (Ubuntu folks) and they run dqlite (distributed sqlite) instead of etcd (to lower I/O and memory requirements), many people don't like it because it uses snaps

    k3s is started by Rancher folks (and mostly still developed by them?),

    there's k0s (for bare metal ... I have no idea what that means though), kind (kubernetes in docker), there's also k3d (k3s in docker)

    these distributions work by consuming/wrapping the k8s components as go libraries - https://github.com/kubernetes/kubernetes/blob/master/staging...

    ...

    then there's the whole zoo of various k8s plugins/addons/tools for networking (CNI - https://github.com/containernetworking/cni#3rd-party-plugins), storage (CSI - https://kubernetes-csi.github.io/docs/drivers.html), helm for package management, a ton of security-related things that try to spot errors in all this circus ... and so on.

  • How to install Weave's Ignite for Firecracker VMs with simple script
    3 projects | dev.to | 20 Feb 2022
    #! /usr/bin/bash # Update apt-get repository and install dependencies apt-get update && apt-get install -y --no-install-recommends dmsetup openssh-client git binutils # Install containerd if it's not present -- prevents breaking docker-ce installations which containerd || apt-get install -y --no-install-recommends containerd # Installing CNI # Current version from https://github.com/containernetworking/cni/releases export CNI_VERSION=v1.0.1 ARCH=$([ "$(uname -m)" = "x86_64" ] && echo amd64 || echo arm64) export ARCH sudo mkdir -p /opt/cni/bin curl -sSL "https://github.com/containernetworking/plugins/releases/download/${CNI_VERSION}/cni-plugins-linux-${ARCH}-${CNI_VERSION}.tgz" | sudo tar -xz -C /opt/cni/bin # Installing Ignite # Get the current version from https://github.com/weaveworks/ignite/releases export VERSION=v0.10.0 GOARCH=$(go env GOARCH 2>/dev/null || echo "amd64") export GOARCH for binary in ignite ignited; do echo "Installing ${binary}..." curl -sfLo ${binary} "https://github.com/weaveworks/ignite/releases/download/${VERSION}/${binary}-${GOARCH}" chmod +x ${binary} sudo mv ${binary} /usr/local/bin done # Check if the installation was successful ignite version
  • Solving Four Kubernetes Networking Challenges
    2 projects | dev.to | 18 Jan 2022
    The Container Network Interface (CNI) includes a specification for writing network plugins to configure network interfaces. This allows you to create overlay networks that satisfy Pod-to-Pod communication requirements.
  • k8s-the-hard-way
    11 projects | dev.to | 26 Oct 2021
    In this lab you will bootstrap three Kubernetes worker nodes. The following components will be installed on each node: runc, container networking plugins, containerd, kubelet, and kube-proxy.
  • Kubernetes Network Policies: A Practitioner's Guide
    2 projects | dev.to | 9 Sep 2021
    CNI type plugins follow the Container Network Interface spec and are used by the community to create advanced featured plugins. On the other hand, Kubenet utilizes bridge and host-local CNI plugins and has basic features.
  • Release 🎉 CNI v1.0.1 🎉 · containernetworking/cni
    1 project | /r/devopsish | 8 Sep 2021

What are some alternatives?

When comparing CoreDNS and cni you can also consider the following projects:

PowerDNS - PowerDNS Authoritative, PowerDNS Recursor, dnsdist

containerlab - container-based networking labs

blocky - Fast and lightweight DNS proxy as ad-blocker for local network with many features

cri-api - Container Runtime Interface (CRI) – a plugin interface which enables kubelet to use a wide variety of container runtimes.

Pi-hole - A black hole for Internet advertisements

containerd - An open and reliable container runtime

nsupdate.info - Dynamic DNS service

k8s-the-hard-way

etcd - Distributed reliable key-value store for the most critical data of a distributed system

virtual-kubelet - Virtual Kubelet is an open source Kubernetes kubelet implementation.

Maza ad blocking - Local ad blocker. Like Pi-hole but local and using your operating system.

runc - CLI tool for spawning and running containers according to the OCI specification