Cluster IP とは?
cluster IP はデフォルトの service タイプで、クラスター内にのみ存在し外部からはルーティングできない仮想 IP アドレスです。そこへ送られたトラフィックは、service を支える正常な pod へ透過的に load balancing されます。基盤となる pod が変わっても、アドレスは一定のままです。
なぜ重要か
cluster IP は、個々の pod を追跡することなく service と通信するための安定した内部エンドポイントを workload に提供します。これはクラスター内の service ディスカバリが構築される土台です。
関連ガイド
What Is a Headless Service?A headless service has no cluster IP and instead returns the addresses of its individual pods, so clients can…
What Is the Node Port Range?The node port range is the band of high-numbered ports a cluster can allocate for NodePort services, exposing…
What Is kube-proxy Mode?kube-proxy mode is the mechanism kube-proxy uses to implement service routing on a node, such as iptables or…