Please enable JavaScript.
Coggle requires JavaScript to display documents.
Kubernetes (component (Pod (Introduction (a group of one or more…
Kubernetes
component
Pod
-
Introduction
-
Containers in different pods have distinct IP addresses and can not communicate by IPC without special configuration
-
Feature
If a node dies, the pods scheduled to that node are scheduled for deletion ( is not “rescheduled” to a new node;)
-
-
service
-
-
Introduction
-
-
For Kubernetes-native applications, Kubernetes offers a simple Endpoints API that is updated whenever the set of Pods in a Service changes.
-
For non-native applications, Kubernetes offers a virtual-IP-based bridge to Services which redirects to the backend Pods
-
formate
Selector
service has no selector, the corresponding Endpoints object will not be created
Kube-proxy
-
-
Proxy-mode:iptables
Service Object
it installs iptables rules which capture traffic to the Service’s clusterIP (which is virtual) and Port and redirects that traffic to one of the Service’s backend sets
-
-
-
-
-
Install
-
Kubelet
the component that runs on all of the machines in your cluster and does things like starting pods and containers
-
-
-
-