Kubernetes Networking Concepts: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 19: Line 19:


=Service Networking=
=Service Networking=
=DNS Support=
<font color=darkgray>Explain default.svc.cluster.local, svc.cluster.local, cluster.local.</font>
TODO: https://medium.com/kubernetes-tutorials/kubernetes-dns-for-services-and-pods-664804211501
==Name Resolution inside a Pod==
Each pod gets an <code>/etc/resolv.conf</code> with a name server hardcoded to the IP address of the DNS service <code>kube-dns</code>:
<syntaxhighlight lang='text'>
nameserver 10.96.0.10
search default.svc.cluster.local svc.cluster.local cluster.local
options ndots:5
</syntaxhighlight>
The local DNS library is thus configured to use by default the name server behind the Kubernetes [[#DNS_Service|DNS service]].
==DNS Service==
The DNS service is a regular Kubernetes [[Kubernetes_Service_Concepts#Service|service]], deployed in the <code>kube-system</code> namespace, which exposes the Kubernetes [[#Internal_DNS_Server|internal DNS server]]:
<syntaxhighlight lang='text'>
NAME      TYPE        CLUSTER-IP  EXTERNAL-IP  PORT(S)                  AGE
kube-dns  ClusterIP  10.96.0.10  <none>        53/UDP,53/TCP,9153/TCP  49d
</syntaxhighlight>
==Internal DNS Server==
===CoreDNS===
===kube-dns===
Note that <code>kube-dns</code> seems to be both the name of the Kubernetes [[#DNS_Service|DNS service]] and the name of a backing provider.
===SkyDNS===
==Services and Naming==


=Kube-proxy=
=Kube-proxy=

Revision as of 05:32, 20 September 2020

External

Internal

TODO

⚠️ Work in progress, see "Kubernetes Learning.doc/Kubernetes Networking Concepts".

Overview

This page describes various Kubernetes networking aspects, grouped around several high level subjects. It starts by explaining how pods communicate with each other within a Kubernetes cluster. This is the Pod Networking section. Service Networking section explains with how Kubernetes services use a stable virtual IP address to offer access to a pool equivalent pods, all of which may come and go individually. In these two sections will be mainly discussing about IP addresses and routing. Naming and DNS, including how service names are mapped to service IP addresses, is discussed in the DNS Support section. Finally, we'll discuss about how external traffic reaches the pods, in the Ingress section.

Pod Networking

Service Networking

Kube-proxy

Kube-proxy

Pod Network

Every pod in the Kubernetes cluster has its own IP address, which is routable on the pod network, so every pod on the pod network can talk directly to every other pod.

Cluster IP Address

ClusterIP services expose stable Cluster IP addresses.

The DNS Service

Each Kubernetes cluster has an internal DNS service, with a static IP address that is hardcoded into every pod on the cluster. Every new Service is automatically registered with the cluster's DNS service so cluster components can find services by name. StatefulSets and the individual pods managed by a StatefulSet are also registered with the DNS service.

The DNS service is built on CoreDNS.

Testing name resolution:

kubectl run -it --rm --restart=Never --image=infoblox/dnstools:latest dnstools

Also see:

Services and DNS

Network Plugin

Flannel

Flannel is the default network plugin that comes with Kubespray. Flannel is an L2 overlay network solution. An L2 solution is difficult to troubleshoot due to packet encapsulation. Also, every node in the network is state-heavy (VLANs, tunnels).

Calico

Calico is a pure L3 fabric solution. It is also referred to as a network policy engine for Kubernetes.

Ingress

Ingress Concepts