We have deployed an app with front end and backend service. It is deployed on kubernetes on AWS. Both services are deployed on a single node.
Today it went down, because of an issue with the node.
To avoid such failure in future, the proposed solution is to create 3 nodes in 3 different availability zones. We will create 3 replica pods for both front end and backend services. Each node will host one pair of front and backend. This way if node in one az goes down, we will still have 2 more nodes in other zones.
Should we move ahead with this approach , or there is a better solution ?
PS (A major requirement for the solution is that , it should not cost too much)