Join us

ContentUpdates and recent posts about Kubernetes..
Link
@kala shared a link, 5ย days, 13ย hours ago
FAUN.dev()

AI Is Doing the Testing Now

Brijesh Deb's third "comfortable lie" of software testing is that AI is now doing the testing: coverage dashboards hit 80%+, regression suites maintain themselves, and leadership concludes that risk is handled, while the experienced testers who knew the domain quietly get redeployed or made redundan.. read more ย 

Link
@devopslinks shared a link, 5ย days, 13ย hours ago
FAUN.dev()

Shift Left Did Not Fix It

Shift left has become a buzzword, but merely moving testing earlier doesn't address the core issue of authority and decision-making in quality assurance. AI may offer quicker testing, but it doesn't comprehend risk like human testers do - beware the dangerous lie that AI can replace thorough, critic.. read more ย 

Link
@devopslinks shared a link, 5ย days, 13ย hours ago
FAUN.dev()

Terraform is dead

Graham Gilbert argues Terraform is effectively dead, kept alive only by inertia: HCL forced engineers to translate intent (the diagrams, paragraphs, and constraints that actually describe systems) into a DSL that nobody naturally thinks in, while fragmenting infrastructure, application logic, polici.. read more ย 

Link
@devopslinks shared a link, 5ย days, 13ย hours ago
FAUN.dev()

The invisible engineering behind Lambdaโ€™s network

AWS engineers explain how the Lambda team rebuilt VPC networking so they can keep per-invocation setup off the hot path and run dense microVM workers at scale... read more ย 

The invisible engineering behind Lambdaโ€™s network
Link
@devopslinks shared a link, 5ย days, 13ย hours ago
FAUN.dev()

Finding zombies in our systems: A real-world story of CPU bottlenecks

After a network outage crisis, Pinterest's ML Platform team discovered high Kubernetes agent CPU usage was causing critical Ray training job failures. The team's deep profiling strategy revealed a rarely seen flaw in how Kubelet was handling memory cgroup iterations... read more ย 

Finding zombies in our systems: A real-world story of CPU bottlenecks
Link
@devopslinks shared a link, 5ย days, 13ย hours ago
FAUN.dev()

AI in SRE: What's Actually Coming in 2026

AI in SRE is evolving, with true value in Root Cause Analysis and Pre-Change Impact Analysis, not autonomous remediation or AI replacing SREs - it's about collaboration and focus evolution... read more ย 

Story
@laura_garcia shared a post, 5ย days, 21ย hours ago
Software Developer, RELIANOID

๐—Ÿ๐—ถ๐—ป๐˜‚๐˜… ๐—ธ๐—ฒ๐—ฟ๐—ป๐—ฒ๐—น ๐˜ƒ๐˜‚๐—น๐—ป๐—ฒ๐—ฟ๐—ฎ๐—ฏ๐—ถ๐—น๐—ถ๐˜๐—ถ๐—ฒ๐˜€

๐Ÿ” ๐—Ÿ๐—ถ๐—ป๐˜‚๐˜… ๐—ธ๐—ฒ๐—ฟ๐—ป๐—ฒ๐—น ๐˜ƒ๐˜‚๐—น๐—ป๐—ฒ๐—ฟ๐—ฎ๐—ฏ๐—ถ๐—น๐—ถ๐˜๐—ถ๐—ฒ๐˜€ are once again forcing enterprises to rethink ๐™ž๐™ฃ๐™›๐™ง๐™–๐™จ๐™ฉ๐™ง๐™ช๐™˜๐™ฉ๐™ช๐™ง๐™š ๐™จ๐™š๐™˜๐™ช๐™ง๐™ž๐™ฉ๐™ฎ ๐™ฅ๐™ง๐™ž๐™ค๐™ง๐™ž๐™ฉ๐™ž๐™š๐™จ. The recent disclosure of โ€œ๐—–๐—ผ๐—ฝ๐˜† ๐—™๐—ฎ๐—ถ๐—นโ€ and โ€œ๐——๐—ถ๐—ฟ๐˜๐˜† ๐—™๐—ฟ๐—ฎ๐—ดโ€ highlights how kernel-level flaws can rapidly evolve into major risks for cloud environments, containers, Kubernetes clusters, and cr..

ย Activity
@cristiandeluxe started using tool WordPress , 6ย days, 14ย hours ago.
ย Activity
@cristiandeluxe started using tool Vue.js , 6ย days, 14ย hours ago.
ย Activity
@cristiandeluxe started using tool TypeScript , 6ย days, 14ย hours ago.
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.