Posts

Showing posts with the label kubernetes

Run Multi-Container Applications with Kubernetes ☸️

Image
 After we explored a simpler approach of running multiple containers in Run Multi-Container Applications with Docker Compose  let's try a more advanced approach with wider options and definitely more steps to implement. Kubernetes is an open-source platform designed to automate deploying, scaling, and managing containerized applications. It groups containers into logical units for easy management and discovery, making it a key player in the world of DevOps, ci/cd and cloud-native applications.  It's very important to note that this simple example is only aimed for software engineers who aren't responsible for DevOps or ci/cd rather this is for the engineers who develop the applications so that they get a glimpse of how their applications are generally handled after they get containerized and understand a bit about how their work gets deployed.  I also would like to clarify that in order for us to run Kubernetes (k8s for short, because there are 8 letters between...