Posts

DevOps Project — CI/CD -4

Image
In the previous blog, we have completed this entire CI/CD pipeline and we could able to deploy application on Docker container successfully. By this time, we have to similar kind of environment. But instead of Docker host, we are going to deploy our applications on Kubernetes Cluster. Link to last blog :  https://medium.com/@ahammed.jabirp/devops-project-ci-cd-3-9fedd470e3cc Github :  https://github.com/jabir000/hello-world.git However, in case that Docker container goes down, there is no way to recover. So to overcome this problem we can use Docker native service called Docker Swarm, or else we can use container management service like Kubernetes. But using Kubernetes gives a lot of advantages comparatively. That is the reason we are not going to deploy our applications as a Docker container. We are going to deploy it as a pod on our Kubernetes environment. We already have this environment :- Now we need to set up our Kubernetes environment on AWS because everything is in pla...