<?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: GaeaRuiW</title>
    <description>The latest articles on DEV Community by GaeaRuiW (@gaearuiw).</description>
    <link>https://dev.to/gaearuiw</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%2F3962962%2F2ce668ac-4527-4f2b-a419-b01bd760fda8.png</url>
      <title>DEV Community: GaeaRuiW</title>
      <link>https://dev.to/gaearuiw</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/gaearuiw"/>
    <language>en</language>
    <item>
      <title>I built an open-source alternative to Microsoft's KAITO that works on ANY Kubernetes cluster</title>
      <dc:creator>GaeaRuiW</dc:creator>
      <pubDate>Tue, 09 Jun 2026 05:17:19 +0000</pubDate>
      <link>https://dev.to/gaearuiw/i-built-an-open-source-alternative-to-microsofts-kaito-that-works-on-any-kubernetes-cluster-2db3</link>
      <guid>https://dev.to/gaearuiw/i-built-an-open-source-alternative-to-microsofts-kaito-that-works-on-any-kubernetes-cluster-2db3</guid>
      <description>&lt;p&gt;Six months ago, my team needed to deploy DeepSeek-R1 for internal use. We have a Kubernetes cluster — like everyone does in 2026 — so I started looking for tools.&lt;/p&gt;

&lt;h2&gt;
  
  
  The problem
&lt;/h2&gt;

&lt;p&gt;There are basically three options for running LLMs on Kubernetes:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;KAITO&lt;/strong&gt; (Microsoft) — CNCF Sandbox, 1600+ stars, but Azure-only. We are on AWS.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;KServe&lt;/strong&gt; — CNCF Incubating, solid project, but requires Knative + ISTIO + 5+ other components.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Raw vLLM&lt;/strong&gt; — Great for serving, but you need to separately set up monitoring, tracing, auth, API keys, rate limiting, autoscaling.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;So I did what any engineer would do: I built my own.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I built
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;kube-llmops&lt;/strong&gt; is a Kubernetes-native LLMOps platform that deploys everything you need with one Helm chart:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Model serving — vLLM, llama.cpp, or TEI, auto-selected based on model format&lt;/li&gt;
&lt;li&gt;AI Gateway — LiteLLM for unified API, key management, rate limiting, budget control&lt;/li&gt;
&lt;li&gt;Observability — 11 pre-built Grafana dashboards + Langfuse v3 LLM tracing&lt;/li&gt;
&lt;li&gt;Autoscaling — KEDA with queue depth, TTFT P95, TPOT P95, scale-to-zero&lt;/li&gt;
&lt;li&gt;Security — Keycloak SSO, LLM-Guard prompt injection defense&lt;/li&gt;
&lt;li&gt;RAG — Dify + pgvector + TEI embedding + Ragas evaluation&lt;/li&gt;
&lt;li&gt;Fine-tuning — LLaMA-Factory + Argo Workflows + MLflow&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Why KAITO doesn't work for everyone
&lt;/h2&gt;

&lt;p&gt;KAITO is a great project — but it only runs on Azure. If you are on AWS, GCP, on-prem, or multi-cloud, you are out of luck.&lt;/p&gt;

&lt;p&gt;kube-llmops is cloud-agnostic. It runs on AWS EKS, Google GKE, Azure AKS, on-prem, or local kind.&lt;/p&gt;

&lt;h2&gt;
  
  
  What makes it different
&lt;/h2&gt;

&lt;p&gt;Feature comparison:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Cloud-agnostic&lt;/strong&gt;: kube-llmops Yes, KAITO Azure-only, KServe Yes&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;One-command install&lt;/strong&gt;: kube-llmops Yes, KAITO Yes, KServe No&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;AI Gateway&lt;/strong&gt;: kube-llmops Yes, KAITO No, KServe No&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;LLM Tracing&lt;/strong&gt;: kube-llmops Yes, KAITO No, KServe No&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Pre-built dashboards&lt;/strong&gt;: kube-llmops 11, KAITO 0, KServe 0&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;KEDA autoscaling&lt;/strong&gt;: kube-llmops Yes, KAITO No, KServe Partial&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;SSO&lt;/strong&gt;: kube-llmops Yes, KAITO No, KServe No&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;RAG infrastructure&lt;/strong&gt;: kube-llmops Yes, KAITO No, KServe No&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Try it
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://github.com/GaeaRuiW/kube-llmops" rel="noopener noreferrer"&gt;https://github.com/GaeaRuiW/kube-llmops&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Give it a star if you want to support a truly open, cloud-agnostic LLMOps platform! ⭐&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git clone https://github.com/GaeaRuiW/kube-llmops.git
&lt;span class="nb"&gt;cd &lt;/span&gt;kube-llmops
helm &lt;span class="nb"&gt;install &lt;/span&gt;kube-llmops charts/kube-llmops-stack &lt;span class="nt"&gt;-f&lt;/span&gt; charts/kube-llmops-stack/values-ci.yaml &lt;span class="nt"&gt;--namespace&lt;/span&gt; kube-llmops &lt;span class="nt"&gt;--create-namespace&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>kubernetes</category>
      <category>vllm</category>
      <category>devops</category>
      <category>opensource</category>
    </item>
    <item>
      <title>KAITO vs KServe vs kube-llmops: Which Kubernetes LLM Platform Should You Choose in 2026?</title>
      <dc:creator>GaeaRuiW</dc:creator>
      <pubDate>Tue, 02 Jun 2026 06:22:15 +0000</pubDate>
      <link>https://dev.to/gaearuiw/kaito-vs-kserve-vs-kube-llmops-which-kubernetes-llm-platform-should-you-choose-in-2026-5g3d</link>
      <guid>https://dev.to/gaearuiw/kaito-vs-kserve-vs-kube-llmops-which-kubernetes-llm-platform-should-you-choose-in-2026-5g3d</guid>
      <description>&lt;h1&gt;
  
  
  KAITO vs KServe vs kube-llmops
&lt;/h1&gt;

&lt;p&gt;If you are running LLMs on Kubernetes in 2026, you have probably encountered three main options: &lt;strong&gt;KAITO&lt;/strong&gt; (Microsoft/CNCF Sandbox), &lt;strong&gt;KServe&lt;/strong&gt; (CNCF Incubating), and &lt;strong&gt;kube-llmops&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  TL;DR Comparison
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Feature&lt;/th&gt;
&lt;th&gt;kube-llmops&lt;/th&gt;
&lt;th&gt;KAITO&lt;/th&gt;
&lt;th&gt;KServe&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;AI Gateway&lt;/td&gt;
&lt;td&gt;Built-in (LiteLLM)&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;LLM Tracing&lt;/td&gt;
&lt;td&gt;Langfuse v3&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Grafana Dashboards&lt;/td&gt;
&lt;td&gt;11 pre-built&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;KEDA Autoscaling&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;td&gt;Partial&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;SSO&lt;/td&gt;
&lt;td&gt;Keycloak OIDC&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;RAG&lt;/td&gt;
&lt;td&gt;Dify + pgvector + TEI&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Fine-tuning&lt;/td&gt;
&lt;td&gt;LLaMA-Factory + Argo&lt;/td&gt;
&lt;td&gt;Basic&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Cloud-Agnostic&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;td&gt;Azure-only&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;kube-llmops&lt;/strong&gt; is the only platform that gives you a complete LLM operations stack in one Helm install: model serving (vLLM, llama.cpp), AI gateway, observability, RAG, fine-tuning, SSO, and autoscaling.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/GaeaRuiW/kube-llmops" rel="noopener noreferrer"&gt;https://github.com/GaeaRuiW/kube-llmops&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Give it a star if you found this useful! ⭐&lt;/p&gt;

</description>
      <category>kubernetes</category>
      <category>llm</category>
      <category>vllm</category>
      <category>devops</category>
    </item>
  </channel>
</rss>
