<?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: Arnab Adhikary</title>
    <description>The latest articles on DEV Community by Arnab Adhikary (@arnabadhikar).</description>
    <link>https://dev.to/arnabadhikar</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%2F3867570%2F82bd17a2-6b0d-4d0d-8b65-cad787992eab.jpeg</url>
      <title>DEV Community: Arnab Adhikary</title>
      <link>https://dev.to/arnabadhikar</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/arnabadhikar"/>
    <language>en</language>
    <item>
      <title>Is anyone using AWS CodePipeline for the complete CI/CD pipeline?</title>
      <dc:creator>Arnab Adhikary</dc:creator>
      <pubDate>Sat, 04 Jul 2026 19:25:39 +0000</pubDate>
      <link>https://dev.to/arnabadhikar/is-anyone-using-aws-codepipeline-for-the-complete-cicd-pipelineaws-cicd-cloudcomputing-3nfk</link>
      <guid>https://dev.to/arnabadhikar/is-anyone-using-aws-codepipeline-for-the-complete-cicd-pipelineaws-cicd-cloudcomputing-3nfk</guid>
      <description></description>
      <category>ai</category>
      <category>reviews</category>
      <category>devops</category>
      <category>discuss</category>
    </item>
    <item>
      <title>Why AWS CodePipeline + ECS falls short for production-grade microservices (and how EKS fixes it)</title>
      <dc:creator>Arnab Adhikary</dc:creator>
      <pubDate>Fri, 03 Jul 2026 20:02:11 +0000</pubDate>
      <link>https://dev.to/arnabadhikar/why-aws-codepipeline-ecs-falls-short-for-production-grade-microservices-and-how-eks-fixes-it-5bb9</link>
      <guid>https://dev.to/arnabadhikar/why-aws-codepipeline-ecs-falls-short-for-production-grade-microservices-and-how-eks-fixes-it-5bb9</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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F9fx2b0emryxx18y3vm8f.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%2F9fx2b0emryxx18y3vm8f.png" alt="AWS CodePipeline Demo" width="800" height="1008"&gt;&lt;/a&gt;&lt;br&gt;
I've been deep in the weeds with both stacks recently, and here's the pattern that keeps showing up: CodePipeline + ECS works great for a demo or a single-service app — but the moment you're running a real microservices architecture with 10+ services, it starts to strain.&lt;/p&gt;

&lt;p&gt;Here's where it breaks down:&lt;/p&gt;

&lt;p&gt;𝗗𝗲𝗽𝗹𝗼𝘆𝗺𝗲𝗻𝘁 𝗳𝗹𝗲𝘅𝗶𝘀𝗶𝗹𝗶𝘁𝘆&lt;br&gt;
CodePipeline gives you rolling updates and basic blue/green via CodeDeploy, but true canary rollouts, traffic-weighted shifts, and automated rollback-on-metric-breach need a lot of custom glue. EKS + Argo Rollouts or Flagger gives you canary, blue/green, and progressive delivery natively, with automatic rollback based on Prometheus metrics.&lt;/p&gt;

&lt;p&gt;𝗢𝗿𝗰𝗵𝗲𝘀𝘁𝗿𝗮𝘁𝗶𝗼𝗻 𝗴𝗿𝗮𝗻𝘂𝗹𝗮𝗿𝗶𝘁𝘆&lt;br&gt;
ECS task definitions are coarse compared to Kubernetes primitives. Sidecars, init containers, fine-grained resource requests/limits, pod disruption budgets, topology spread constraints — this level of control simply doesn't exist in ECS the way it does in EKS.&lt;/p&gt;

&lt;p&gt;𝗦𝗲𝗿𝘃𝗶𝗰𝗲 𝗺𝗲𝘀𝗵 &amp;amp; 𝘁𝗿𝗮𝗳𝗳𝗶𝗰 𝗺𝗮𝗻𝗮𝗴𝗲𝗺𝗲𝗻𝘁&lt;br&gt;
Once you need mTLS between services, retries, circuit breaking, or fine-grained traffic splitting across dozens of microservices, ECS leans hard on App Mesh — which is limited and increasingly an afterthought inside AWS. EKS integrates cleanly with Istio, Linkerd, or Cilium, which are the de facto standard and far more actively developed.&lt;/p&gt;

&lt;p&gt;𝗚𝗶𝘁𝗢𝗽𝘀 𝗺𝗮𝘁𝘂𝗿𝗶𝘁𝘆&lt;br&gt;
CodePipeline is push-based and AWS-native only. EKS unlocks GitOps via ArgoCD or Flux — declarative, auditable, drift-detecting deployments where the cluster state is always a mirror of Git. For multi-service, multi-team orgs, this is a massive operational win.&lt;/p&gt;

&lt;p&gt;𝗣𝗼𝗿𝘁𝗮𝗯𝗶𝗹𝗶𝘁𝘆 &amp;amp; 𝘃𝗲𝗻𝗱𝗼𝗿 𝗹𝗼𝗰𝗸-𝗶𝗻&lt;br&gt;
An ECS task definition is AWS-only. A Kubernetes manifest runs on EKS, GKE, AKS, or on-prem with zero rewrite. For teams thinking about multi-cloud or hybrid strategies, that portability is not a nice-to-have — it's a hedge.&lt;/p&gt;

&lt;p&gt;𝗘𝗰𝗼𝘀𝘆𝘀𝘁𝗲𝗺 &amp;amp; 𝗼𝗯𝘀𝗲𝗿𝘃𝗮𝗯𝗶𝗹𝗶𝘁𝘆&lt;br&gt;
The CNCF ecosystem around Kubernetes — Prometheus, Grafana, OpenTelemetry, Karpenter for node autoscaling, KEDA for event-driven scaling — is simply richer and more battle-tested at scale than what's available for ECS.&lt;/p&gt;

&lt;p&gt;None of this means ECS is "bad" — for smaller teams or simpler architectures, it's genuinely a great choice with less operational overhead. But once you're running production-grade microservices at scale, with multiple teams shipping independently, EKS's flexibility, GitOps-native workflows, and CNCF ecosystem stop being "nice to have" and start being necessary.&lt;/p&gt;

&lt;p&gt;Curious to hear from others running microservices in production — did you make the same ECS → EKS journey, or has ECS scaled fine for your use case?&lt;/p&gt;

</description>
      <category>ai</category>
      <category>devops</category>
      <category>discuss</category>
      <category>aws</category>
    </item>
    <item>
      <title>Kubernetes Architecture: The Complete Beginner-to-Intermediate Guide</title>
      <dc:creator>Arnab Adhikary</dc:creator>
      <pubDate>Mon, 22 Jun 2026 17:48:33 +0000</pubDate>
      <link>https://dev.to/arnabadhikar/kubernetes-architecture-the-complete-beginner-to-intermediate-guide-3e4l</link>
      <guid>https://dev.to/arnabadhikar/kubernetes-architecture-the-complete-beginner-to-intermediate-guide-3e4l</guid>
      <description>&lt;p&gt;Most engineers learn Kubernetes by memorizing commands.&lt;/p&gt;

&lt;p&gt;The best engineers understand &lt;strong&gt;how the architecture works behind the scenes&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Once you understand the architecture, troubleshooting becomes significantly easier.&lt;/p&gt;

&lt;p&gt;Let's dive in.&lt;/p&gt;




&lt;h1&gt;
  
  
  Why Kubernetes Exists
&lt;/h1&gt;

&lt;p&gt;Imagine manually managing:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Hundreds of servers&lt;/li&gt;
&lt;li&gt;Thousands of containers&lt;/li&gt;
&lt;li&gt;Constant deployments&lt;/li&gt;
&lt;li&gt;Hardware failures&lt;/li&gt;
&lt;li&gt;Traffic spikes&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Without orchestration, managing this environment would be nearly impossible.&lt;/p&gt;

&lt;p&gt;Kubernetes automates these tasks.&lt;/p&gt;




&lt;h1&gt;
  
  
  High-Level Architecture
&lt;/h1&gt;

&lt;p&gt;A Kubernetes cluster consists of:&lt;/p&gt;

&lt;p&gt;✅ Control Plane&lt;/p&gt;

&lt;p&gt;✅ Worker Nodes&lt;/p&gt;

&lt;p&gt;The Control Plane manages the cluster.&lt;/p&gt;

&lt;p&gt;The Worker Nodes run applications.&lt;/p&gt;




&lt;h1&gt;
  
  
  Control Plane Components
&lt;/h1&gt;

&lt;h2&gt;
  
  
  API Server
&lt;/h2&gt;

&lt;p&gt;The API Server acts as the gateway to the cluster.&lt;/p&gt;

&lt;p&gt;Every action performed through:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;kubectl get pods
kubectl apply &lt;span class="nt"&gt;-f&lt;/span&gt; deployment.yaml
kubectl delete pod nginx
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;ultimately communicates with the API Server.&lt;/p&gt;




&lt;h2&gt;
  
  
  ETCD
&lt;/h2&gt;

&lt;p&gt;ETCD is the distributed key-value database of Kubernetes.&lt;/p&gt;

&lt;p&gt;It stores:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Pods&lt;/li&gt;
&lt;li&gt;Deployments&lt;/li&gt;
&lt;li&gt;Services&lt;/li&gt;
&lt;li&gt;ConfigMaps&lt;/li&gt;
&lt;li&gt;Secrets&lt;/li&gt;
&lt;li&gt;Cluster configuration&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Think of ETCD as the single source of truth.&lt;/p&gt;

&lt;p&gt;Without ETCD, Kubernetes loses its memory.&lt;/p&gt;




&lt;h2&gt;
  
  
  Scheduler
&lt;/h2&gt;

&lt;p&gt;The Scheduler decides:&lt;/p&gt;

&lt;p&gt;"Which worker node should run this pod?"&lt;/p&gt;

&lt;p&gt;It evaluates:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Available CPU&lt;/li&gt;
&lt;li&gt;Available Memory&lt;/li&gt;
&lt;li&gt;Affinity rules&lt;/li&gt;
&lt;li&gt;Taints and Tolerations&lt;/li&gt;
&lt;li&gt;Resource constraints&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Controller Manager
&lt;/h2&gt;

&lt;p&gt;Controllers continuously monitor cluster health.&lt;/p&gt;

&lt;p&gt;Examples:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;ReplicaSet Controller&lt;/li&gt;
&lt;li&gt;Node Controller&lt;/li&gt;
&lt;li&gt;Deployment Controller&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If something drifts from the desired state, controllers correct it.&lt;/p&gt;




&lt;h2&gt;
  
  
  Cloud Controller Manager
&lt;/h2&gt;

&lt;p&gt;Used in cloud environments such as AWS.&lt;/p&gt;

&lt;p&gt;Responsible for:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Load Balancers&lt;/li&gt;
&lt;li&gt;Node lifecycle management&lt;/li&gt;
&lt;li&gt;Cloud networking integration&lt;/li&gt;
&lt;/ul&gt;




&lt;h1&gt;
  
  
  Worker Node Components
&lt;/h1&gt;

&lt;h2&gt;
  
  
  Kubelet
&lt;/h2&gt;

&lt;p&gt;The primary node agent.&lt;/p&gt;

&lt;p&gt;Responsibilities:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Receives instructions&lt;/li&gt;
&lt;li&gt;Creates pods&lt;/li&gt;
&lt;li&gt;Monitors pod health&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Container Runtime
&lt;/h2&gt;

&lt;p&gt;Runs containers.&lt;/p&gt;

&lt;p&gt;Examples:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;containerd&lt;/li&gt;
&lt;li&gt;CRI-O&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Docker support now works through container runtimes rather than directly.&lt;/p&gt;




&lt;h2&gt;
  
  
  Kube Proxy
&lt;/h2&gt;

&lt;p&gt;Responsible for service networking.&lt;/p&gt;

&lt;p&gt;Provides:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Service discovery&lt;/li&gt;
&lt;li&gt;Traffic routing&lt;/li&gt;
&lt;li&gt;Load balancing&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Pods
&lt;/h2&gt;

&lt;p&gt;The smallest deployable unit in Kubernetes.&lt;/p&gt;

&lt;p&gt;Applications ultimately run inside Pods.&lt;/p&gt;




&lt;h1&gt;
  
  
  What Happens During Deployment?
&lt;/h1&gt;

&lt;p&gt;When a Deployment YAML is applied:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;API Server receives request&lt;/li&gt;
&lt;li&gt;ETCD stores desired state&lt;/li&gt;
&lt;li&gt;Scheduler chooses node&lt;/li&gt;
&lt;li&gt;Kubelet creates pod&lt;/li&gt;
&lt;li&gt;Container runtime starts containers&lt;/li&gt;
&lt;li&gt;Kube Proxy enables networking&lt;/li&gt;
&lt;li&gt;Application becomes available&lt;/li&gt;
&lt;/ol&gt;




&lt;h1&gt;
  
  
  The Core Kubernetes Philosophy
&lt;/h1&gt;

&lt;p&gt;Desired State Management.&lt;/p&gt;

&lt;p&gt;You declare:&lt;/p&gt;

&lt;p&gt;"I want 3 replicas."&lt;/p&gt;

&lt;p&gt;Kubernetes continuously ensures:&lt;/p&gt;

&lt;p&gt;"I have 3 replicas."&lt;/p&gt;

&lt;p&gt;If one replica disappears, Kubernetes creates another automatically.&lt;/p&gt;

&lt;p&gt;This self-healing behavior is one of Kubernetes' most powerful features.&lt;/p&gt;




&lt;h1&gt;
  
  
  Real-World Relevance
&lt;/h1&gt;

&lt;p&gt;Understanding Kubernetes Architecture is critical for:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;CKA Certification&lt;/li&gt;
&lt;li&gt;DevOps Engineering&lt;/li&gt;
&lt;li&gt;Site Reliability Engineering&lt;/li&gt;
&lt;li&gt;Platform Engineering&lt;/li&gt;
&lt;li&gt;Cloud Engineering&lt;/li&gt;
&lt;li&gt;AWS EKS Administration&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Without architectural knowledge, troubleshooting production incidents becomes extremely difficult.&lt;/p&gt;




&lt;h2&gt;
  
  
  Challenge Question
&lt;/h2&gt;

&lt;p&gt;Suppose:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;API Server is healthy&lt;/li&gt;
&lt;li&gt;Worker Nodes are healthy&lt;/li&gt;
&lt;li&gt;ETCD is unavailable&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Can new Pods be scheduled?&lt;/p&gt;

&lt;p&gt;Why or why not?&lt;/p&gt;

&lt;p&gt;Drop your answer below 👇&lt;/p&gt;

&lt;h1&gt;
  
  
  kubernetes #cka #cloudnative #devops #sre #aws #eks #containers #docker #platformengineering #terraform #argocd #gitops #helm #prometheus #grafana #observability #linux #cloudcomputing #devsecops #opensource #siteReliabilityEngineering #cloudengineering #automation #infrastructureascode #learninginpublic
&lt;/h1&gt;

</description>
      <category>ai</category>
      <category>tutorial</category>
      <category>devops</category>
      <category>kubernetes</category>
    </item>
    <item>
      <title>CKA Overview &amp; Exam Pattern: The Kubernetes Certification That Actually Tests Your Skills</title>
      <dc:creator>Arnab Adhikary</dc:creator>
      <pubDate>Sun, 14 Jun 2026 21:11:43 +0000</pubDate>
      <link>https://dev.to/arnabadhikar/cka-overview-exam-pattern-the-kubernetes-certification-that-actually-tests-your-skills-503m</link>
      <guid>https://dev.to/arnabadhikar/cka-overview-exam-pattern-the-kubernetes-certification-that-actually-tests-your-skills-503m</guid>
      <description>&lt;p&gt;🚀 CKA Exam Overview: What Every Kubernetes Engineer Should Know Before Starting&lt;/p&gt;

&lt;p&gt;If you're working in DevOps, Cloud Engineering, Platform Engineering, or SRE, chances are you've heard about the &lt;strong&gt;Certified Kubernetes Administrator (CKA)&lt;/strong&gt; certification.&lt;/p&gt;

&lt;p&gt;But here's what surprises most people:&lt;/p&gt;

&lt;p&gt;⚠️ There are no multiple-choice questions.&lt;/p&gt;

&lt;p&gt;You get a real Kubernetes environment and must perform actual administrative tasks within a limited time.&lt;/p&gt;

&lt;p&gt;That makes the CKA one of the most practical certifications in the cloud-native ecosystem.&lt;/p&gt;

&lt;p&gt;📋 CKA Exam Pattern&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Category&lt;/th&gt;
&lt;th&gt;Details&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Exam Type&lt;/td&gt;
&lt;td&gt;Performance-Based&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Duration&lt;/td&gt;
&lt;td&gt;2 Hours&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Environment&lt;/td&gt;
&lt;td&gt;Live Kubernetes Cluster&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Passing Score&lt;/td&gt;
&lt;td&gt;~66%&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Proctoring&lt;/td&gt;
&lt;td&gt;Online Remote Proctored&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Difficulty&lt;/td&gt;
&lt;td&gt;Intermediate to Advanced&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;🎯 Core Domains&lt;/p&gt;

&lt;h3&gt;
  
  
  1️⃣ Cluster Architecture, Installation &amp;amp; Configuration
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Cluster setup&lt;/li&gt;
&lt;li&gt;Control Plane components&lt;/li&gt;
&lt;li&gt;Certificate management&lt;/li&gt;
&lt;li&gt;Cluster upgrades&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  2️⃣ Workloads &amp;amp; Scheduling
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Deployments&lt;/li&gt;
&lt;li&gt;StatefulSets&lt;/li&gt;
&lt;li&gt;DaemonSets&lt;/li&gt;
&lt;li&gt;Jobs &amp;amp; CronJobs&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  3️⃣ Services &amp;amp; Networking
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Services&lt;/li&gt;
&lt;li&gt;Ingress&lt;/li&gt;
&lt;li&gt;DNS&lt;/li&gt;
&lt;li&gt;Network Policies&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  4️⃣ Storage
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Persistent Volumes&lt;/li&gt;
&lt;li&gt;Persistent Volume Claims&lt;/li&gt;
&lt;li&gt;Storage Classes&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  5️⃣ Troubleshooting
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Node failures&lt;/li&gt;
&lt;li&gt;Pod failures&lt;/li&gt;
&lt;li&gt;Control Plane issues&lt;/li&gt;
&lt;li&gt;Network troubleshooting&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Why CKA Matters in 2026
&lt;/h2&gt;

&lt;p&gt;Modern organizations running workloads on AWS, Azure, and GCP increasingly rely on Kubernetes.&lt;/p&gt;

&lt;p&gt;A certified administrator demonstrates the ability to:&lt;/p&gt;

&lt;p&gt;✅ Manage production clusters&lt;/p&gt;

&lt;p&gt;✅ Troubleshoot incidents efficiently&lt;/p&gt;

&lt;p&gt;✅ Maintain reliability and scalability&lt;/p&gt;

&lt;p&gt;✅ Support cloud-native application deployments&lt;/p&gt;

&lt;p&gt;These skills directly align with DevOps and SRE responsibilities.&lt;/p&gt;

&lt;h2&gt;
  
  
  My 90-Day CKA Challenge
&lt;/h2&gt;

&lt;p&gt;I'm beginning a structured 90-day CKA preparation journey.&lt;br&gt;
Over the next few months, I'll share:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Study notes&lt;/li&gt;
&lt;li&gt;Lab exercises&lt;/li&gt;
&lt;li&gt;Troubleshooting scenarios&lt;/li&gt;
&lt;li&gt;Exam strategies&lt;/li&gt;
&lt;li&gt;Kubernetes tips &amp;amp; tricks&lt;/li&gt;
&lt;li&gt;Real-world DevOps and SRE learnings&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Discussion Time 👇
&lt;/h2&gt;

&lt;p&gt;If you've already taken the CKA:&lt;/p&gt;

&lt;p&gt;👉 What was the hardest section for you?&lt;/p&gt;

&lt;p&gt;If you're preparing:&lt;/p&gt;

&lt;p&gt;👉 What's your biggest challenge right now?&lt;/p&gt;

&lt;p&gt;Let's learn from each other.&lt;/p&gt;

</description>
      <category>tutorial</category>
      <category>beginners</category>
      <category>python</category>
      <category>devops</category>
    </item>
  </channel>
</rss>
