Load Balancer - CI/CD用語集の定義
load balancerは、受信リクエストを健全なbackendに分散して負荷を均し、障害を迂回します。
load balancerは、受信したネットワークリクエストを複数のbackendインスタンスに分散し、負荷を分散し、可用性を高め、不健全なターゲットを迂回します。
deployはload balancerの背後でbackendを登録および登録解除します。そのhealth checkが、新しいインスタンスが実際にトラフィックを受け始めるタイミングを決めます。
health checkによるゲーティング
新しいpodは、load balancerが健全だとマークして初めてトラフィックを受け取ります。そのため、health checkとreadinessの設定が食い違っていると、rollout中にリクエストが取りこぼされることがあります。
関連ガイド
Ingress Controller - CI/CD Glossary DefinitionIngress Controller: An ingress controller is a component that watches Ingress resources and configures a reve…
Outlier Detection - CI/CD Glossary DefinitionOutlier Detection: Outlier detection automatically ejects individual backend instances from the load-balancin…
Service Discovery - CI/CD Glossary DefinitionService Discovery: Service discovery is the mechanism by which services find the network addresses of other s…