<?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: Michal Marszalek</title>
    <description>The latest articles on DEV Community by Michal Marszalek (@michalmarszalek).</description>
    <link>https://dev.to/michalmarszalek</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4103223%2F2ac5e3bb-48bf-4b5a-80ad-414dafc2eb9b.png</url>
      <title>DEV Community: Michal Marszalek</title>
      <link>https://dev.to/michalmarszalek</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/michalmarszalek"/>
    <language>en</language>
    <item>
      <title>How much room is actually left on that k8s node?</title>
      <dc:creator>Michal Marszalek</dc:creator>
      <pubDate>Mon, 31 Aug 2026 19:34:03 +0000</pubDate>
      <link>https://dev.to/michalmarszalek/how-much-room-is-actually-left-on-that-k8s-node-1me9</link>
      <guid>https://dev.to/michalmarszalek/how-much-room-is-actually-left-on-that-k8s-node-1me9</guid>
      <description>&lt;p&gt;I spent a lot of time optimizing autoscaling on a GKE cluster at my previous company. During that process, I realized no tools were available to visualize how the Kubernetes scheduler perceives cluster nodes something that could help explain why a pod gets assigned to one node over another.&lt;/p&gt;

&lt;p&gt;So, I created a simple Python application to visualize requested resources in a Kubernetes cluster. And that’s how k8sfoams was born.&lt;br&gt;
It's a local, read-only dashboard that reads your ~/.kube/config, pulls node capacity and pod resource requests, and draws your cluster as a treemap: one box per node, one foam per pod, containers nested inside, and space where the free capacity actually is. No in-cluster deployment. No metrics-server. &lt;br&gt;
One pip install.&lt;br&gt;
&lt;a href="https://pypi.org/project/k8sfoams/" rel="noopener noreferrer"&gt;pip install k8sfoams&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;It supports CPU or memory visualization on a 2D view.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F1p2isovcswriu615mmy1.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F1p2isovcswriu615mmy1.png" alt="2d view" width="800" height="428"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Or both in 3D view.&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fqota4rxg4hwla48dxpf2.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fqota4rxg4hwla48dxpf2.png" alt="3d view" width="800" height="438"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;It's rendered in pure CSS 3D, so no WebGL and no GPU required.&lt;br&gt;
&lt;a href="https://github.com/mmpyro/k8s-pod-foamtree" rel="noopener noreferrer"&gt;Check out the repository and let me know your thoughts:&lt;/a&gt;&lt;/p&gt;

</description>
      <category>devops</category>
      <category>kubernetes</category>
    </item>
    <item>
      <title>Your Helm Tests Are Green. That Doesn’t Mean They’re Testing Anything.</title>
      <dc:creator>Michal Marszalek</dc:creator>
      <pubDate>Mon, 31 Aug 2026 19:07:14 +0000</pubDate>
      <link>https://dev.to/michalmarszalek/your-helm-tests-are-green-that-doesnt-mean-theyre-testing-anything-20i4</link>
      <guid>https://dev.to/michalmarszalek/your-helm-tests-are-green-that-doesnt-mean-theyre-testing-anything-20i4</guid>
      <description>&lt;p&gt;As a software engineer, I was always fascinated by many aspects of software engineering. Once, my college team told me about mutation tests. A test that tests not the code, but how good your tests are. At that time, I started using Stryker, a mutation framework for C#. As I started writing plenty of Helm unit tests for a Helm chart, I realized creating a tool for Helm unit tests might be a good idea. &lt;a href="https://github.com/mmpyro/helm-mutation-test" rel="noopener noreferrer"&gt;And here it is&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Why give it a try?&lt;br&gt;
&lt;strong&gt;Validates test quality&lt;/strong&gt;: Finds blind spots in your Helm chart assertions.&lt;br&gt;
&lt;strong&gt;Seamless integration&lt;/strong&gt;: Built specifically to work with helm-unittest.&lt;br&gt;
&lt;strong&gt;Higher confidence&lt;/strong&gt;: Catches silent configuration bugs before production.&lt;/p&gt;

&lt;p&gt;More examples and a brief description you will find in this &lt;a href="https://medium.com/@michamarszaek/your-helm-tests-are-green-that-doesnt-mean-they-re-testing-anything-95ff2d4fcb48" rel="noopener noreferrer"&gt;article&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Check out the repository and let me know what you think.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F2mdetzxgvaq85vy5ugsy.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F2mdetzxgvaq85vy5ugsy.jpeg" alt="Helm mutation tests" width="799" height="413"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>testing</category>
      <category>kubernetes</category>
      <category>devops</category>
    </item>
  </channel>
</rss>
