Posts

Showing posts from November, 2020

CI\CD : In world of Dockers

Image
Docker  provides the ability to package and run an application in a loosely isolated environment called a container. The isolation and security allow you to run many containers simultaneously on a given host. You can even run  Docker  containers within host machines that are actually virtual machines Kubernetes and OpenShift are both container orchestration platforms, but they have some important differences: 1. OpenShift is a Kubernetes distribution with additional features: OpenShift is built on top of Kubernetes and adds several features and capabilities that Kubernetes does not have out of the box. Some of these features include integrated container registry, integrated CI/CD pipelines, integrated monitoring, and integrated security features. 2. OpenShift has a more opinionated approach: OpenShift is designed to provide a more opinionated and integrated platform for building and deploying containerized applications. This means that OpenShift has a more prescriptive ...