Whether the application will be live during the time of POD deployment in AKS?

4/9/2020

Whether the application will be live (In transaction) during the time of POD deployment in AKS?

While we are performing the POD deployment, whether the application transactions will go through (or) get error out?

-- goofyui
azure
azure-devops
kubernetes

1 Answer

4/9/2020

The Deployment system does a rolling update. New pods are created with the new template and once Ready they are added to the service load balancer, and then old ones are removed and terminated.

-- coderanger
Source: StackOverflow