Kubernetes Networking Concepts: Difference between revisions

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


* [[Kubernetes_Concepts#Subjects|Kubernetes Concepts]]
* [[Kubernetes_Concepts#Subjects|Kubernetes Concepts]]
=TO DO=
<font color=darkgray>
* https://medium.com/google-cloud/understanding-kubernetes-networking-pods-7117dd28727
* https://medium.com/google-cloud/understanding-kubernetes-networking-services-f0cb48e4cc82
* https://medium.com/google-cloud/understanding-kubernetes-networking-ingress-1bc341c84078
</font>


=Kube-proxy=
=Kube-proxy=

Revision as of 17:11, 30 September 2019

Internal

TO DO

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.

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 (https://coredns.io).