Join us

ContentUpdates and recent posts about Pulumi..
Link
@devopslinks shared a link, 3ย weeks, 2ย days 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, 3ย weeks, 2ย days 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, 3ย weeks, 2ย days 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, 3ย weeks, 2ย days 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, 3ย weeks, 2ย days 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, 3ย weeks, 2ย days 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 , 3ย weeks, 3ย days ago.
ย Activity
@cristiandeluxe started using tool Vue.js , 3ย weeks, 3ย days ago.
ย Activity
@cristiandeluxe started using tool TypeScript , 3ย weeks, 3ย days ago.
ย Activity
@cristiandeluxe started using tool Shopify , 3ย weeks, 3ย days ago.
Pulumi is an open-source infrastructure-as-code platform that allows you to define, deploy, and manage cloud resources using familiar general-purpose programming languages like Python, JavaScript, Go, and TypeScript.

Pulumi represents a major shift in the Infrastructure-as-Code (IaC) landscape by moving away from proprietary domain-specific languages (DSLs) and static configuration files like YAML or JSON. Instead, it leverages the power of standard programming languages, allowing engineers to use loops, functions, classes, and existing package managers to define their cloud environments. This means you can apply software engineering best practicesโ€”such as unit testing, modularity, and CI/CD integrationโ€”directly to your infrastructure setups on providers like AWS, Azure, Google Cloud, and Kubernetes.

The platform works by utilizing a "State" mechanism similar to Terraform, where it tracks the current deployment against your desired code. When you run a Pulumi program, it builds a resource graph to determine the most efficient way to provision or update your services. Because it uses real code, it provides superior IDE support, including auto-completion and type-checking, which significantly reduces the syntax errors and "trial-and-error" deployments common with text-based configuration tools.

Furthermore, Pulumi excels in hybrid and multi-cloud environments by providing a unified workflow for both infrastructure and application delivery. It bridges the gap between developers and platform engineers, as both can now speak the same languageโ€”literally.