I'm trying to understand how exactly vertx should be configured for high availability.
I know that vertx supports high availability an is able to restart or redirect workload to another verticle running on cluster.
But how can it be solved for routing? My app is basically a web application and has one HTTP endpoint with a public URL - implemented as a standard Vertx webserver+router. Here's my problem - how to protect against crash of this web server/router? My understanding is that I cannot have multiple http servers serving the same routes, or can I?
Traditionally, I'd use load balancer and two or more redundant HTTP endpoints, but I'm not sure how to implement this in vertx.
Will using Kubernetes for production be able to handle load balancing of the HTTP endpoint?