- DevOps with Kubernetes
- Hideto Saito Hui Chuan Chloe Lee Cheng Yang Wu
- 154字
- 2021-07-02 13:41:52
Proxy (kube-proxy)
The proxy handles the routing between a pod load balancer (also known as a service) and pods. It also provides routing from external internet to services. There are three proxy modes: userspace, iptables, and ipvs. The userspace mode creates a large overhead by switching the kernel space and user space. The iptables mode, on the other hand, is the latest default proxy mode. It changes the iptables Network Address Translation (NAT: https://en.wikipedia.org/wiki/Network_address_translation) in Linux to achieve routing TCP and UDP packets across all containers. IP Virtual Servers (IPVS) was general available (GA) in Kubernetes 1.11 and is used to address performance degradations when running 1,000+ services in a cluster. It runs on a host and acts as a load balancer, forwarding the connection to real servers. IPVS mode will fall back to iptables in some scenarios; please refer to https://github.com/kubernetes/kubernetes/tree/master/pkg/proxy/ipvs for more detailed information.
- Visual C++串口通信開發入門與編程實踐
- Docker技術入門與實戰(第3版)
- Mastering Selenium WebDriver
- C和C++安全編碼(原書第2版)
- INSTANT Weka How-to
- Python零基礎快樂學習之旅(K12實戰訓練)
- Java應用開發技術實例教程
- Elasticsearch for Hadoop
- Oracle從入門到精通(第5版)
- Learning Unity 2D Game Development by Example
- Bootstrap 4 Cookbook
- Python數據可視化之美:專業圖表繪制指南(全彩)
- Learning Bootstrap 4(Second Edition)
- Python Social Media Analytics
- JavaEE架構與程序設計