- Provide a comment and commit (save) the file. The git commit will trigger a new build (**Continuous Integration**) for the **po-service** microservice in VSTS. Upon successful completion of the build process, the updated container images will be pushed into the ACR and the release pipeline (**Continuous Deployment**) will be executed. As part of the CD process, the Kubernetes deployment object for the **po-service** microservice will be updated with the newly built container image. This action will trigger a **Rolling** deployment of **po-service** microservice in AKS. As a result, the **po-service** containers (*Pods*) from the old deployment (version 1.0) will be deleted and a new deployment (version 2.0) will be instantiated in AKS. The new deployment will use the latest container image from the ACR and spin up new containers (*Pods*). During this deployment process, users of the **po-service** microservice will not experience any downtime as AKS will do a rolling deployment of containers.
0 commit comments