Join us

ContentUpdates and recent posts about Kubernetes..
 Activity
@deceive3w started using Kubernetes , 4 years, 1 month ago.
 Activity
@thiago151 started using Kubernetes , 4 years, 1 month ago.
 Activity
@sagarchhatrala started using Kubernetes , 4 years, 1 month ago.
 Activity
@parthiban started using Kubernetes , 4 years, 1 month ago.
 Activity
@melenlu started using Kubernetes , 4 years, 1 month ago.
Story
@llbbl shared a post, 4 years, 1 month ago
Chief Engineerer, phpops

5 DevOps Tools to Level Up Your Kubernetes

Helm VMware vSphere Ubuntu k3s Kubernetes

Here are five tools to level up your Kubernetes journey; no matter if you are just getting started or deep in the K8s, read on to see why I picked them. 🦮

1_GwX_vTFVIpcDsCv1-pjPmA.jpeg
 Activity
@llbbl started using Kubernetes , 4 years, 1 month ago.
 Activity
@mangeshsutarjmr started using Kubernetes , 4 years, 1 month ago.
Story
@cloudgeek7 shared a post, 4 years, 1 month ago

Evolution of Containers and How Managed EKS Service solves Kubernetes challenges

AWS EKS Kubernetes

Containers have been around since the 1970s for creating an isolated environment where applications and services can run without interfering with other processes.

0_GAE64sRjitnIFk8R.png
Story
@dijodaiju shared a post, 4 years, 1 month ago

DevOps & DecSecOps Roadmap [From beginner to an expert]

Docker Kubernetes Python

In this blog, I will be explaining the path that I’m following in my DevOps journey.

1_8gEzJZTTMYr_ObyJHk1Mjw (1).png
Kubernetes, often abbreviated as K8s, is an open-source orchestration platform designed to automate the deployment, scaling, and management of containerized applications. It acts as a "brain" for your infrastructure, ensuring that your containers run exactly where and how they should across a cluster of physical or virtual machines, abstracting away the underlying hardware to treat the entire data center as a single computational resource.

At its core, Kubernetes operates on a declarative model: you define the "desired state" of your application—such as how many replicas should be running or how much CPU they should use - and the system continuously works to maintain that state. If a container crashes or a node fails, Kubernetes automatically detects the discrepancy and restarts or reschedules the workload to ensure zero downtime, providing a self-healing environment that is critical for modern, high-availability systems.

Beyond simple container management, Kubernetes provides a robust ecosystem for networking, storage, and security. It handles service discovery and load balancing internally, allowing containers to communicate seamlessly without hardcoded IP addresses, and orchestrates storage mounting from various providers. By standardizing how applications are deployed and scaled, Kubernetes enables developers to move from local development to global production with consistent and predictable results.