Kubernetes 中的自动缩放微服务

Autoscaling microservice in Kubernetes

我想创建与此类似的东西:

基本上我有一个微服务,我想扩展它的实例,但要使用相同的 MongoDB 容器。这些容器应该连接到负载均衡器。我如何使用 Kubernetes 实现这一目标?

您可以使用 k8s HorizontalPodAutoscaler to scale out your microservice as the demand goes up. When all of your nodes are filled up with microservices, you use cluster autoscaler 扩展您的节点,以便更多微服务可以上线。