<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Dhruv malaviya</title>
    <description>The latest articles on DEV Community by Dhruv malaviya (@dhruv_malaviya_cdcc71e595).</description>
    <link>https://dev.to/dhruv_malaviya_cdcc71e595</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3964043%2Ffbef3b8c-07dc-4123-b52d-7523c1088dec.jpg</url>
      <title>DEV Community: Dhruv malaviya</title>
      <link>https://dev.to/dhruv_malaviya_cdcc71e595</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/dhruv_malaviya_cdcc71e595"/>
    <language>en</language>
    <item>
      <title>Why I built my cloud platform on micro-VMs instead of containers (a security story)</title>
      <dc:creator>Dhruv malaviya</dc:creator>
      <pubDate>Wed, 03 Jun 2026 07:55:21 +0000</pubDate>
      <link>https://dev.to/dhruv_malaviya_cdcc71e595/why-i-built-my-cloud-platform-on-micro-vms-instead-of-containers-a-security-story-6lm</link>
      <guid>https://dev.to/dhruv_malaviya_cdcc71e595/why-i-built-my-cloud-platform-on-micro-vms-instead-of-containers-a-security-story-6lm</guid>
      <description>&lt;p&gt;Containers are great until you remember they all share one kernel. For a lot of workloads that's fine. But the moment you're running untrusted code, multi-tenant jobs, or anything you wouldn't want leaking into its neighbours, a single kernel exploit is the whole game. That worry is exactly why I made an early architecture call for my platform, Krova &lt;a href="//krova.cloud"&gt;krova&lt;/a&gt;: no shared-kernel containers.&lt;/p&gt;

&lt;p&gt;Enter Firecracker&lt;br&gt;
Firecracker is the open-source micro-VM monitor AWS built to run Lambda and Fargate. Each instance is a real hardware-virtualized VM (KVM under the hood) with its own kernel, but it boots in around 125ms and carries almost none of the weight of a traditional VM. You get the isolation boundary of a VM with something close to the start-up feel of a container.&lt;/p&gt;

&lt;p&gt;That trade-off is perfect for security-minded, ephemeral work:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Hypervisor-level isolation. Tenants are separated at the virtualization boundary, not by namespaces over a shared kernel.&lt;/li&gt;
&lt;li&gt;Tiny attack surface. Firecracker deliberately ships a minimal device model, far less exposed than a full VM stack.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;How Krova uses it&lt;/p&gt;

&lt;p&gt;Every machine on Krova (a "Cube") is its own Firecracker micro-VM with its own kernel. They get private internal networking rather than a public IP each, ingress is explicit port mapping, and you can sleep or destroy a Cube the instant you're done. So "run something untrusted, then make it vanish" is the default path, not a thing you bolt on.&lt;/p&gt;

&lt;p&gt;And because they boot in about a second and keep their disk between sleeps, the security model doesn't cost you convenience, which is usually the part that makes people skip isolation in the first place.&lt;/p&gt;

</description>
      <category>security</category>
      <category>aws</category>
      <category>cloud</category>
      <category>devops</category>
    </item>
  </channel>
</rss>
