From d7a9df35339db26cd41d6c77594816d7ab98f233 Mon Sep 17 00:00:00 2001 From: Jawher Kl Date: Sun, 17 Nov 2024 01:36:29 +0100 Subject: [PATCH] feat: container orchestration * Update container-orchestration@Yq8kVoRf20aL_o4VZU5--.md Simplified content and added working links to resources for better clarity and learning. * Update container-orchestration@Yq8kVoRf20aL_o4VZU5--.md Replace content and added working links to resources for better clarity and learning. * Update container-orchestration@Yq8kVoRf20aL_o4VZU5--.md * Update src/data/roadmaps/devops/content/container-orchestration@Yq8kVoRf20aL_o4VZU5--.md --------- Co-authored-by: Arik Chakma --- ...tainer-orchestration@Yq8kVoRf20aL_o4VZU5--.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/data/roadmaps/devops/content/container-orchestration@Yq8kVoRf20aL_o4VZU5--.md b/src/data/roadmaps/devops/content/container-orchestration@Yq8kVoRf20aL_o4VZU5--.md index 688ae9a2c..43ed41d8a 100644 --- a/src/data/roadmaps/devops/content/container-orchestration@Yq8kVoRf20aL_o4VZU5--.md +++ b/src/data/roadmaps/devops/content/container-orchestration@Yq8kVoRf20aL_o4VZU5--.md @@ -1,11 +1,11 @@ -# Containers +# Container Orchestration -Containers are a construct in which cgroups, namespaces, and chroot are used to fully encapsulate and isolate a process. This encapsulated process, called a container image, shares the kernel of the host with other containers, allowing containers to be significantly smaller and faster than virtual machines, These images are designed for portability, allowing for full local testing of a static image, and easy deployment to a container management platform. +Container orchestration is the process of managing and automating the lifecycle of containers, including their deployment, scaling, and networking across multiple hosts. It is a critical technology for running complex containerized applications in production environments. -Visit the following resources to learn more: +By leveraging tools like Kubernetes, Docker Swarm, and Apache Mesos, organizations can ensure high availability, scalability, and reliability for their applications. Container orchestration simplifies operations by automating routine tasks and providing a robust foundation for microservices, cloud-native development, and DevOps practices. -- [@article@What are Containers?](https://cloud.google.com/learn/what-are-containers) -- [@article@What is a Container?](https://www.docker.com/resources/what-container/) -- [@video@What are Containers?](https://www.youtube.com/playlist?list=PLawsLZMfND4nz-WDBZIj8-nbzGFD4S9oz) -- [@article@Articles about Containers - The New Stack](https://thenewstack.io/category/containers/) -- [@feed@Explore top posts about Containers](https://app.daily.dev/tags/containers?ref=roadmapsh) +Visit the following resources to learn more: + +- [@article@What is Container Orchestration?](https://www.redhat.com/en/topics/containers/what-is-container-orchestration) +- [@article@What is Kubernetes?](https://kubernetes.io/docs/tutorials/kubernetes-basics/) +- [@video@Introduction to Kubernetes](https://www.youtube.com/watch?v=PH-2FfFD2PU)