<?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: Michael B</title>
    <description>The latest articles on DEV Community by Michael B (@superdoo).</description>
    <link>https://dev.to/superdoo</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%2F3114012%2Fc6db17de-4083-4cea-a115-da411ccc75a6.png</url>
      <title>DEV Community: Michael B</title>
      <link>https://dev.to/superdoo</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/superdoo"/>
    <language>en</language>
    <item>
      <title>Keeping It Clean: Organizing Minikube Projects with Kubernetes Namespaces</title>
      <dc:creator>Michael B</dc:creator>
      <pubDate>Sun, 04 May 2025 16:22:42 +0000</pubDate>
      <link>https://dev.to/superdoo/keeping-it-clean-organizing-minikube-projects-with-kubernetes-namespaces-9f0</link>
      <guid>https://dev.to/superdoo/keeping-it-clean-organizing-minikube-projects-with-kubernetes-namespaces-9f0</guid>
      <description>&lt;h1&gt;
  
  
  Keeping It Clean: Organizing Minikube Projects with Kubernetes Namespaces
&lt;/h1&gt;

&lt;p&gt;When I first started experimenting with Kubernetes during the COVID shutdown of America, using Minikube on my local Linux laptop, my primary goal was simple: &lt;strong&gt;just get it running&lt;/strong&gt;. I wanted to see containers spin up, web apps load, and monitoring tools like Grafana and Prometheus show colorful dashboards. And it worked—for a while. As a seasoned administrator and developers I knew better but, I wanted to see what I could glean from my own findings, in addition to what I was doing at work.&lt;/p&gt;

&lt;p&gt;But as my experimentation grew into more complex projects, I started running into a wall: &lt;strong&gt;my cluster was messy&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Problem: Everything Was in One Basket
&lt;/h2&gt;

&lt;p&gt;Initially, I deployed everything into the &lt;code&gt;default&lt;/code&gt; namespace. It seemed convenient at the time—after all, Minikube doesn’t require you to think about namespaces when you’re just getting started. Over time, though, things got tangled:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Prometheus components were scattered across namespaces.&lt;/li&gt;
&lt;li&gt;Web apps, databases, and monitoring tools were stepping on each other.&lt;/li&gt;
&lt;li&gt;I couldn't tell which resources belonged to what project.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Cleaning up and troubleshooting became a nightmare.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Revelation: Namespaces Are Not Optional
&lt;/h2&gt;

&lt;p&gt;I realized that &lt;strong&gt;clean architecture starts with namespaces&lt;/strong&gt;. Namespaces allow you to isolate your components logically and operationally:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;web&lt;/code&gt;: for web applications&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;database&lt;/code&gt;: for databases&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;monitoring&lt;/code&gt;: for tools like Grafana and Prometheus&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;devops&lt;/code&gt;: for CI/CD components like Jenkins&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This organization not only brings clarity but also makes it easier to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Apply RBAC policies&lt;/li&gt;
&lt;li&gt;Clean up projects without risking unrelated resources&lt;/li&gt;
&lt;li&gt;Restart or rebuild environments independently&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Step 1: Cleanup
&lt;/h2&gt;

&lt;p&gt;I decided to clean up my Minikube environment completely, retaining only what was essential:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Deleted all user-created namespaces&lt;/strong&gt;:
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;   kubectl delete namespace web database prometheus
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Cleaned up leftover Prometheus and Helm resources in the &lt;code&gt;default&lt;/code&gt; namespace&lt;/strong&gt;:
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;   kubectl get configmap,secrets,serviceaccounts &lt;span class="nt"&gt;-n&lt;/span&gt; default | &lt;span class="nb"&gt;grep &lt;/span&gt;prometheus
   kubectl delete serviceaccount prometheus-grafana prometheus-kube-prometheus-alertmanager &lt;span class="se"&gt;\&lt;/span&gt;
   prometheus-kube-prometheus-operator prometheus-kube-prometheus-prometheus &lt;span class="se"&gt;\&lt;/span&gt;
   prometheus-kube-state-metrics prometheus-prometheus-node-exporter &lt;span class="nt"&gt;-n&lt;/span&gt; default
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Verified only Minikube system namespaces remained&lt;/strong&gt;:
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;   kubectl get namespaces
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Output:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;   default
   kube-node-lease
   kube-public
   kube-system
   kubernetes-dashboard
   monitoring (for Grafana)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Step 2: Planning for the Future
&lt;/h2&gt;

&lt;p&gt;Going forward, every component will live in its own namespace:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Grafana stays in &lt;code&gt;monitoring&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Prometheus will be reinstalled in a clean &lt;code&gt;prometheus&lt;/code&gt; namespace&lt;/li&gt;
&lt;li&gt;Future apps like &lt;code&gt;web1&lt;/code&gt;, &lt;code&gt;web2&lt;/code&gt;, and &lt;code&gt;web3&lt;/code&gt; will get their own namespaces&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This structure makes it far easier to maintain and scale your Kubernetes environment, even when working locally with Minikube.&lt;/p&gt;

&lt;h2&gt;
  
  
  Final Thoughts
&lt;/h2&gt;

&lt;p&gt;What started as a fun experiment quickly turned into a lesson in Kubernetes best practices. If you’re serious about learning Kubernetes and DevOps, you should adopt clean practices early. Start with clear naming conventions, separate namespaces, and regular cleanup.&lt;/p&gt;

&lt;p&gt;Because the only thing worse than a crashed pod is a cluster where you don’t know &lt;strong&gt;why&lt;/strong&gt; it crashed—or even &lt;strong&gt;who&lt;/strong&gt; it belonged to.&lt;/p&gt;

</description>
      <category>devops</category>
      <category>kubernetes</category>
      <category>grafana</category>
      <category>prometheus</category>
    </item>
    <item>
      <title>AI, Developers, and the Future of Blogging — Are We Just Talking to Ourselves?</title>
      <dc:creator>Michael B</dc:creator>
      <pubDate>Thu, 01 May 2025 17:09:56 +0000</pubDate>
      <link>https://dev.to/superdoo/ai-developers-and-the-future-of-blogging-are-we-just-talking-to-ourselves-cdd</link>
      <guid>https://dev.to/superdoo/ai-developers-and-the-future-of-blogging-are-we-just-talking-to-ourselves-cdd</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;"The machines will write the blogs — we’ll just pretend we’re the audience."&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Lately, I’ve been wondering: is AI reshaping the developer blogosphere into a place where we’re all just echoing each other?&lt;/p&gt;

&lt;p&gt;As someone who came from a traditional sysadmin background and evolved into DevOps over the last 5 years, I’ve relied on blogs — real, raw, human-written blogs — to learn. Now I see a growing wave of AI-generated content that &lt;em&gt;sounds&lt;/em&gt; helpful, &lt;em&gt;looks&lt;/em&gt; polished, but often lacks the scars of actual troubleshooting.&lt;/p&gt;

&lt;h2&gt;
  
  
  Developer Voices vs. Machine Output
&lt;/h2&gt;

&lt;p&gt;AI can summarize docs, generate code, and answer questions faster than you can type. That’s useful — incredibly so. But it raises questions:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Will dev blogs become AI-fed SEO farms?&lt;/li&gt;
&lt;li&gt;Are personal experiences, like battling Jenkins in Docker or debugging Minikube, still being shared?&lt;/li&gt;
&lt;li&gt;How do we keep authenticity alive when the content floodgates are open?&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Blogging Platforms: The State of Things
&lt;/h2&gt;

&lt;p&gt;Dev.to, Hashnode, Medium, and GitHub Pages have given developers places to write. But as AI starts to write &lt;em&gt;with&lt;/em&gt; us or &lt;em&gt;for&lt;/em&gt; us, what happens to the quiet voices — the ones writing their first post, not their 500th?&lt;/p&gt;

&lt;h2&gt;
  
  
  A New Kind of Blog?
&lt;/h2&gt;

&lt;p&gt;Maybe the future of blogging isn’t just about tips and tricks. Maybe it’s about documenting the &lt;em&gt;process&lt;/em&gt; — even the frustration. That’s something AI can’t fully replicate yet. It doesn’t sit through failed installs, or feel the grind of learning Kubernetes on a half-broken Docker setup.&lt;/p&gt;

&lt;h2&gt;
  
  
  Final Thought
&lt;/h2&gt;

&lt;p&gt;If you’re still blogging &lt;em&gt;your own stuff&lt;/em&gt;, keep going. AI isn’t the enemy — but the signal-to-noise ratio is changing. Let’s make sure we don’t drown out the real voices that make our community valuable.&lt;/p&gt;




&lt;p&gt;Thanks for reading. I’m Michael Barreras — DevOps engineer, Linux veteran, and believer in human-first tech writing.&lt;/p&gt;

&lt;p&gt;Follow me if you're building, breaking, or just wondering where all this is heading.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>blogging</category>
      <category>developers</category>
      <category>future</category>
    </item>
    <item>
      <title>From SysAdmin to DevOps: My Journey Into Cloud Automation</title>
      <dc:creator>Michael B</dc:creator>
      <pubDate>Thu, 01 May 2025 16:49:13 +0000</pubDate>
      <link>https://dev.to/superdoo/from-sysadmin-to-devops-my-journey-into-cloud-automation-ok4</link>
      <guid>https://dev.to/superdoo/from-sysadmin-to-devops-my-journey-into-cloud-automation-ok4</guid>
      <description></description>
      <category>devops</category>
      <category>linux</category>
      <category>aws</category>
      <category>terraform</category>
    </item>
  </channel>
</rss>
