<?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: Durgesh</title>
    <description>The latest articles on DEV Community by Durgesh (@ai-ops).</description>
    <link>https://dev.to/ai-ops</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%2F1242959%2F27e40993-1a2b-4f08-b7c3-56a7eef92425.png</url>
      <title>DEV Community: Durgesh</title>
      <link>https://dev.to/ai-ops</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ai-ops"/>
    <language>en</language>
    <item>
      <title>Kubernetes Tools</title>
      <dc:creator>Durgesh</dc:creator>
      <pubDate>Tue, 19 May 2026 01:42:31 +0000</pubDate>
      <link>https://dev.to/ai-ops/kubernetes-tools-4f8c</link>
      <guid>https://dev.to/ai-ops/kubernetes-tools-4f8c</guid>
      <description>&lt;p&gt;Every Kubernetes Tool Explained In One Post (And Why They Exist)&lt;br&gt;
The Kubernetes Ecosystem Has a Story. Every tool exists because Kubernetes alone wasn’t enough.&lt;/p&gt;

&lt;p&gt;You run everything with kubectl. Get pods, describe, logs, exec, delete, apply, 50 times a day across 5 namespaces. It works, but it is slow and painful, specially -n namespcae in every command.&lt;/p&gt;

&lt;blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;So you use K9s or Lens. A terminal UI that shows your entire cluster in one view. It lets you switch namespaces, different clusters, and tail logs, exec inside pod, and do everything you need.&lt;/p&gt;
&lt;/blockquote&gt;


&lt;/blockquote&gt;

&lt;p&gt;You deploy with kubectl apply from your laptop. Someone changes a deployment directly on the cluster, and what is running no longer matches what is in Git. That is drift, and it is silent until prod breaks.&lt;/p&gt;

&lt;blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;So you use ArgoCD. Git becomes the single source of truth, every change syncs to the cluster automatically, and if anyone touches a deployment manually ArgoCD overrides it back.&lt;/p&gt;
&lt;/blockquote&gt;


&lt;/blockquote&gt;

&lt;p&gt;Your Kafka consumer has 200,000 messages piling up, CPU is at 5 percent, and HPA sees no reason to scale. The queue keeps growing, and users are waiting.&lt;/p&gt;

&lt;blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;So you use KEDA. It scales pods on queue depth, SQS message count, or Prometheus metrics, and not just CPU. The backlog clears.&lt;/p&gt;
&lt;/blockquote&gt;


&lt;/blockquote&gt;

&lt;p&gt;HPA adds pods during a spike, but the nodes are full, and new pods sit in Pending. HPA did its job, but the cluster had nowhere to put them.&lt;/p&gt;

&lt;blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;So you use Karpenter. A new node appears in seconds when pods are stuck in Pending and disappears when the load drops. You only pay for what you use.&lt;/p&gt;
&lt;/blockquote&gt;


&lt;/blockquote&gt;

&lt;p&gt;Every pod can talk to every other pod by default. Your payment service can reach your database, your internal tool can reach your logging service and nothing is blocked unless you block it.&lt;/p&gt;

&lt;blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;So you use Network Policies. Your database only accepts traffic from the app, everything else is denied and the blast radius of a compromised pod shrinks dramatically.&lt;/p&gt;
&lt;/blockquote&gt;


&lt;/blockquote&gt;

&lt;p&gt;You have 20 microservices, one starts responding slowly and retries pile up across 4 other services. A cascade begins and you have no visibility into where it started because all traffic is invisible.&lt;/p&gt;

&lt;blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;So you use a Service Mesh. Istio or Linkerd puts a sidecar proxy next to every pod, gives you mTLS between every service, retries, circuit breaking and traffic metrics without touching a single line of app code.&lt;/p&gt;
&lt;/blockquote&gt;


&lt;/blockquote&gt;

&lt;p&gt;Your secrets are Base64 encoded in Kubernetes, sitting in etcd and readable by anyone with kubectl access. You want them in Vault or AWS Secrets Manager but you do not want to rewrite your app to fetch them.&lt;/p&gt;

&lt;blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;So you use the Secrets Store CSI Driver. Secrets live in Vault or AWS Secrets Manager and get mounted directly into your pod as files. The secret never lives in Kubernetes.&lt;/p&gt;
&lt;/blockquote&gt;


&lt;/blockquote&gt;

&lt;p&gt;A developer ships a container running as root, another ships with no resource limits and you find out after the incident. Every time.&lt;/p&gt;

&lt;blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;So you use Kyverno. Policies enforced at admission before anything enters the cluster, no root containers, no images without a digest and no deployments without limits.&lt;/p&gt;
&lt;/blockquote&gt;


&lt;/blockquote&gt;

&lt;p&gt;Something is wrong. Pods are restarting, latency is spiking and memory is climbing but you have no numbers, no history and no way to know when it started.&lt;/p&gt;

&lt;blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;So you use Prometheus and Grafana. Prometheus scrapes metrics from every pod, node and component and Grafana turns those numbers into dashboards. You see the spike, the exact time it started and which service caused it.&lt;/p&gt;
&lt;/blockquote&gt;


&lt;/blockquote&gt;

&lt;p&gt;Grafana shows the spike but not which request triggered it, which service it hit first or where it slowed down. Logs give you fragments and metrics give you totals. Neither gives you the full story.&lt;/p&gt;

&lt;blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;So you use Jaeger. It follows one request across every service it touches, shows you latency per hop and the exact failure point. The needle in the haystack, found in seconds.&lt;/p&gt;
&lt;/blockquote&gt;


&lt;/blockquote&gt;

</description>
      <category>devops</category>
      <category>kubernetes</category>
      <category>productivity</category>
      <category>tooling</category>
    </item>
    <item>
      <title>Kubernetes Architecture</title>
      <dc:creator>Durgesh</dc:creator>
      <pubDate>Tue, 28 Apr 2026 14:00:18 +0000</pubDate>
      <link>https://dev.to/ai-ops/kubernetes-architecture-5bml</link>
      <guid>https://dev.to/ai-ops/kubernetes-architecture-5bml</guid>
      <description>&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.amazonaws.com%2Fuploads%2Farticles%2Fzz6qny2ut71cskfh3rzd.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.amazonaws.com%2Fuploads%2Farticles%2Fzz6qny2ut71cskfh3rzd.png" alt=" " width="800" height="1200"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Million -- token Context Window</title>
      <dc:creator>Durgesh</dc:creator>
      <pubDate>Tue, 28 Apr 2026 13:52:09 +0000</pubDate>
      <link>https://dev.to/ai-ops/million-token-context-window-4bnf</link>
      <guid>https://dev.to/ai-ops/million-token-context-window-4bnf</guid>
      <description>&lt;p&gt;Model-by-model takeaway&lt;br&gt;
Claude Opus 4.7 had the strongest baseline reasoning, but it suffered the sharpest evidence-quality erosion under heavy context and got worse even when given more thinking budget.&lt;/p&gt;

&lt;p&gt;Claude Sonnet 4.6 was the surprise winner on heavy-fill pairwise tests, but it paid for that with very high reasoning-token usage and long latency.&lt;/p&gt;

&lt;p&gt;GPT-5.5 was the safest against hallucinations and cross-contamination, but it lost reasoning depth as context filled and showed a cliff drop at very high fill.&lt;/p&gt;

&lt;p&gt;Gemini 3.1 Pro had the flattest drift and the fastest runtime, but its baseline reasoning ceiling was lower than the others.&lt;/p&gt;

&lt;p&gt;DeepSeek V4 Pro looked stable on absolute scores, but pairwise testing revealed the steepest hidden losses and the highest variance.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>machinelearning</category>
    </item>
    <item>
      <title>Software architecture</title>
      <dc:creator>Durgesh</dc:creator>
      <pubDate>Sat, 23 Aug 2025 05:07:09 +0000</pubDate>
      <link>https://dev.to/ai-ops/software-architecture-1ej9</link>
      <guid>https://dev.to/ai-ops/software-architecture-1ej9</guid>
      <description>&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.amazonaws.com%2Fuploads%2Farticles%2Fnmpotqzytejj02haqjsx.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.amazonaws.com%2Fuploads%2Farticles%2Fnmpotqzytejj02haqjsx.png" alt=" " width="766" height="885"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Prompt engineering concepts</title>
      <dc:creator>Durgesh</dc:creator>
      <pubDate>Sat, 23 Aug 2025 05:04:06 +0000</pubDate>
      <link>https://dev.to/ai-ops/prompt-engineering-concepts-1jgc</link>
      <guid>https://dev.to/ai-ops/prompt-engineering-concepts-1jgc</guid>
      <description>&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.amazonaws.com%2Fuploads%2Farticles%2F3ey7fdqwt49u84e21hhv.gif" 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.amazonaws.com%2Fuploads%2Farticles%2F3ey7fdqwt49u84e21hhv.gif" alt=" " width="800" height="1120"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>OSI Model</title>
      <dc:creator>Durgesh</dc:creator>
      <pubDate>Sat, 23 Aug 2025 04:57:00 +0000</pubDate>
      <link>https://dev.to/ai-ops/devsecops-3p99</link>
      <guid>https://dev.to/ai-ops/devsecops-3p99</guid>
      <description>&lt;p&gt;Application Layer &lt;br&gt;
Presentation Layer &lt;br&gt;
Session Layer&lt;br&gt;
Transport Layer&lt;br&gt;
Network Layer&lt;br&gt;
Data Link Layer&lt;br&gt;
Physical Layer&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Kubernetes vs conventional</title>
      <dc:creator>Durgesh</dc:creator>
      <pubDate>Sat, 23 Aug 2025 04:54:32 +0000</pubDate>
      <link>https://dev.to/ai-ops/kubernetes-vs-conventional-4p42</link>
      <guid>https://dev.to/ai-ops/kubernetes-vs-conventional-4p42</guid>
      <description>&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.amazonaws.com%2Fuploads%2Farticles%2F0d7ojqvrt0l9f8od26mf.jpg" 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.amazonaws.com%2Fuploads%2Farticles%2F0d7ojqvrt0l9f8od26mf.jpg" alt=" " width="800" height="1036"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Use IAM roles to connect GitHub Actions to actions in AWS</title>
      <dc:creator>Durgesh</dc:creator>
      <pubDate>Sat, 23 Aug 2025 00:48:17 +0000</pubDate>
      <link>https://dev.to/ai-ops/use-iam-roles-to-connect-github-actions-to-actions-in-aws-c6a</link>
      <guid>https://dev.to/ai-ops/use-iam-roles-to-connect-github-actions-to-actions-in-aws-c6a</guid>
      <description>&lt;p&gt;&lt;a href="https://aws.amazon.com/blogs/security/use-iam-roles-to-connect-github-actions-to-actions-in-aws/" rel="noopener noreferrer"&gt;https://aws.amazon.com/blogs/security/use-iam-roles-to-connect-github-actions-to-actions-in-aws/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>aws</category>
      <category>githubactions</category>
      <category>security</category>
      <category>devops</category>
    </item>
    <item>
      <title>AWS = Azure: Same difference</title>
      <dc:creator>Durgesh</dc:creator>
      <pubDate>Fri, 22 Aug 2025 20:30:23 +0000</pubDate>
      <link>https://dev.to/ai-ops/aws-azure-same-difference-95h</link>
      <guid>https://dev.to/ai-ops/aws-azure-same-difference-95h</guid>
      <description>&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.amazonaws.com%2Fuploads%2Farticles%2Fkjch6tja7s4my2hkm2nw.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.amazonaws.com%2Fuploads%2Farticles%2Fkjch6tja7s4my2hkm2nw.jpeg" alt=" " width="800" height="1200"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Top Cloud Careers</title>
      <dc:creator>Durgesh</dc:creator>
      <pubDate>Fri, 22 Aug 2025 20:29:19 +0000</pubDate>
      <link>https://dev.to/ai-ops/top-cloud-careers-1fmg</link>
      <guid>https://dev.to/ai-ops/top-cloud-careers-1fmg</guid>
      <description>&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.amazonaws.com%2Fuploads%2Farticles%2Fqsu6yse6a1g5t6bk7frn.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.amazonaws.com%2Fuploads%2Farticles%2Fqsu6yse6a1g5t6bk7frn.jpeg" alt=" " width="800" height="1111"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Devops Burger</title>
      <dc:creator>Durgesh</dc:creator>
      <pubDate>Fri, 22 Aug 2025 20:28:46 +0000</pubDate>
      <link>https://dev.to/ai-ops/devops-burger-26h5</link>
      <guid>https://dev.to/ai-ops/devops-burger-26h5</guid>
      <description>&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.amazonaws.com%2Fuploads%2Farticles%2Fzvsbwqjmc16vmay6g9su.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.amazonaws.com%2Fuploads%2Farticles%2Fzvsbwqjmc16vmay6g9su.jpeg" alt=" " width="800" height="1111"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>List of all LLM models</title>
      <dc:creator>Durgesh</dc:creator>
      <pubDate>Fri, 09 May 2025 21:43:56 +0000</pubDate>
      <link>https://dev.to/ai-ops/list-of-all-llm-models-2iae</link>
      <guid>https://dev.to/ai-ops/list-of-all-llm-models-2iae</guid>
      <description>&lt;p&gt;&lt;strong&gt;Major LLMs&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;GPT-4.5 / GPT-4o / GPT-o3 / GPT-o4-mini (OpenAI)&lt;/li&gt;
&lt;li&gt;Gemini 2.5 Pro / Gemini 2.0 / Gemini 1.5 (Google DeepMind)&lt;/li&gt;
&lt;li&gt;Claude 3.7 Sonnet / Claude 3.5 Sonnet (Anthropic)&lt;/li&gt;
&lt;li&gt;Grok-3 / Grok-2 / Grok-1 (xAI)&lt;/li&gt;
&lt;li&gt;Llama 3.1 / Llama 3 / Llama 2 (Meta AI)&lt;/li&gt;
&lt;li&gt;Mistral Large 2 / Mistral 7B / Mixtral 8x22B (Mistral AI)&lt;/li&gt;
&lt;li&gt;Qwen 3 / Qwen 2.5-Max (Alibaba)&lt;/li&gt;
&lt;li&gt;DeepSeek R1 / DeepSeek-V3 / DeepSeek-V2.5 (DeepSeek)&lt;/li&gt;
&lt;li&gt;Falcon 180B / Falcon 40B (Technology Innovation Institute)&lt;/li&gt;
&lt;li&gt;PaLM 2 (Google)&lt;/li&gt;
&lt;li&gt;Nova (Amazon)&lt;/li&gt;
&lt;li&gt;DBRX (Databricks' Mosaic ML)&lt;/li&gt;
&lt;li&gt;Command R (Cohere)&lt;/li&gt;
&lt;li&gt;Inflection-2.5 (Inflection AI)&lt;/li&gt;
&lt;li&gt;Gemma (Google DeepMind)&lt;/li&gt;
&lt;li&gt;Stable LM 2 (Stability AI)&lt;/li&gt;
&lt;li&gt;Nemotron-4 340B (NVIDIA)&lt;/li&gt;
&lt;li&gt;XGen-7B (Salesforce)&lt;/li&gt;
&lt;li&gt;Alpaca 7B (Stanford CRFM)&lt;/li&gt;
&lt;li&gt;Pythia (EleutherAI)&lt;/li&gt;
&lt;li&gt;Phi-3 (Microsoft)&lt;/li&gt;
&lt;li&gt;Jamba (AI21 Labs)&lt;/li&gt;
&lt;li&gt;Ernie (Baidu)&lt;/li&gt;
&lt;li&gt;Granite (IBM)&lt;/li&gt;
&lt;li&gt;BERT (Google, foundational transformer model)&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>ai</category>
      <category>aiops</category>
      <category>openai</category>
    </item>
  </channel>
</rss>
