<?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: CharanTeja Chavithina</title>
    <description>The latest articles on DEV Community by CharanTeja Chavithina (@charanteja_chavithina_b67).</description>
    <link>https://dev.to/charanteja_chavithina_b67</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%2F4012555%2Fba83c6ae-b3ab-42cf-a75d-ead9fadd6ddb.png</url>
      <title>DEV Community: CharanTeja Chavithina</title>
      <link>https://dev.to/charanteja_chavithina_b67</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/charanteja_chavithina_b67"/>
    <language>en</language>
    <item>
      <title>From Git Hooks to AI Code Reviews: Building Secure Code with DevSecOps and Agentic AI</title>
      <dc:creator>CharanTeja Chavithina</dc:creator>
      <pubDate>Wed, 29 Jul 2026 12:48:46 +0000</pubDate>
      <link>https://dev.to/charanteja_chavithina_b67/from-git-hooks-to-ai-code-reviews-building-secure-code-with-devsecops-and-agentic-ai-1m9</link>
      <guid>https://dev.to/charanteja_chavithina_b67/from-git-hooks-to-ai-code-reviews-building-secure-code-with-devsecops-and-agentic-ai-1m9</guid>
      <description>&lt;p&gt;Introduction&lt;/p&gt;

&lt;p&gt;Software development today is not just about writing code—it's about writing secure, reliable, and production-ready code. As applications become more complex, developers need automated mechanisms to catch security issues before they reach production.&lt;/p&gt;

&lt;p&gt;During Week 4 – Assignment 6 of the DevOps Micro Internship (DMI), I explored how Git Pre-Commit Hooks, AI-assisted code reviews, and Agentic AI workflows work together to improve code quality. This assignment demonstrated that combining automation with AI can significantly strengthen the software development lifecycle while keeping humans in control of final decisions.&lt;/p&gt;

&lt;p&gt;Why This Assignment Was Important&lt;/p&gt;

&lt;p&gt;One of the most common mistakes developers make is accidentally committing:&lt;/p&gt;

&lt;p&gt;Hardcoded credentials&lt;br&gt;
API keys&lt;br&gt;
Debug statements&lt;br&gt;
Private keys&lt;br&gt;
Large unnecessary files&lt;/p&gt;

&lt;p&gt;Once committed, these artifacts become part of Git history and can pose serious security risks.&lt;/p&gt;

&lt;p&gt;The goal of this assignment was to prevent such mistakes before the code is committed, using automation and AI-powered analysis.&lt;/p&gt;

&lt;p&gt;Step 1: Starting with a Clean Git Workflow&lt;/p&gt;

&lt;p&gt;The journey began by confirming the repository setup and creating a dedicated feature branch.&lt;/p&gt;

&lt;p&gt;Instead of working directly on the main branch, a separate branch was created to isolate changes.&lt;/p&gt;

&lt;p&gt;This simple practice offers several advantages:&lt;/p&gt;

&lt;p&gt;Keeps the main branch stable&lt;br&gt;
Makes collaboration easier&lt;br&gt;
Produces cleaner Pull Requests&lt;br&gt;
Reduces merge conflicts&lt;/p&gt;

&lt;p&gt;Feature branching is one of the most widely adopted Git best practices in modern software development.&lt;/p&gt;

&lt;p&gt;Step 2: Creating a Risky Script for Testing&lt;/p&gt;

&lt;p&gt;To test automated security checks, a shell script named:&lt;/p&gt;

&lt;p&gt;scripts/notify.sh&lt;/p&gt;

&lt;p&gt;was intentionally created with two common security issues:&lt;/p&gt;

&lt;p&gt;A hardcoded AWS-style access key&lt;br&gt;
A debug statement exposing sensitive information&lt;/p&gt;

&lt;p&gt;Although the values were placeholders, they closely resembled mistakes that developers accidentally introduce into repositories.&lt;/p&gt;

&lt;p&gt;This setup provided a realistic scenario for validating security automation.&lt;/p&gt;

&lt;p&gt;Step 3: Protecting the Repository with a Git Pre-Commit Hook&lt;/p&gt;

&lt;p&gt;The core of this assignment involved creating a custom Git Pre-Commit Hook.&lt;/p&gt;

&lt;p&gt;The hook automatically scanned staged files before every commit.&lt;/p&gt;

&lt;p&gt;It performed two important checks:&lt;/p&gt;

&lt;p&gt;Secret Detection&lt;/p&gt;

&lt;p&gt;It searched for patterns matching:&lt;/p&gt;

&lt;p&gt;AWS Access Keys&lt;br&gt;
RSA/OpenSSH Private Keys&lt;br&gt;
File Size Validation&lt;/p&gt;

&lt;p&gt;It prevented files larger than 1 MB from being committed.&lt;/p&gt;

&lt;p&gt;Whenever either rule was violated, Git immediately rejected the commit.&lt;/p&gt;

&lt;p&gt;Instead of allowing risky code into the repository, developers received clear feedback about what needed to be fixed.&lt;/p&gt;

&lt;p&gt;This demonstrated how automation can enforce security without requiring manual inspection every time.&lt;/p&gt;

&lt;p&gt;Understanding Rule-Based Validation&lt;/p&gt;

&lt;p&gt;A Git pre-commit hook follows predefined rules.&lt;/p&gt;

&lt;p&gt;For example:&lt;/p&gt;

&lt;p&gt;If an AWS key pattern is found → Block the commit.&lt;br&gt;
If a staged file exceeds the allowed size → Reject the commit.&lt;br&gt;
Advantages&lt;br&gt;
Extremely fast&lt;br&gt;
Consistent every time&lt;br&gt;
Easy to automate&lt;br&gt;
Excellent for known security risks&lt;br&gt;
Limitation&lt;/p&gt;

&lt;p&gt;It only detects patterns that have been explicitly programmed.&lt;/p&gt;

&lt;p&gt;It cannot understand the intent or context behind the code.&lt;/p&gt;

&lt;p&gt;Step 4: AI-Powered Review with /pr-ready&lt;/p&gt;

&lt;p&gt;After implementing rule-based validation, the assignment introduced an AI-powered review skill called:&lt;/p&gt;

&lt;p&gt;/pr-ready&lt;/p&gt;

&lt;p&gt;Unlike the Git hook, this AI reviewer analyzed the staged changes much like an experienced code reviewer.&lt;/p&gt;

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

&lt;p&gt;Debug statements&lt;br&gt;
Documentation gaps&lt;br&gt;
Potential security concerns&lt;br&gt;
Pull Request readiness&lt;br&gt;
Overall code quality&lt;/p&gt;

&lt;p&gt;Rather than simply blocking a commit, it explained why certain changes could become problems and even generated a draft Pull Request title and description.&lt;/p&gt;

&lt;p&gt;This highlighted how AI can provide contextual insights beyond simple pattern matching.&lt;/p&gt;

&lt;p&gt;Rule-Based Automation vs AI Code Review&lt;br&gt;
Git Pre-Commit Hook AI Review (/pr-ready)&lt;br&gt;
Pattern Matching    Context Understanding&lt;br&gt;
Fast and Consistent Human-like Reasoning&lt;br&gt;
Detects Known Risks Explains Potential Issues&lt;br&gt;
Blocks Unsafe Commits   Suggests Improvements&lt;br&gt;
Fixed Rules Adaptive Analysis&lt;/p&gt;

&lt;p&gt;Instead of replacing each other, both approaches complement one another to create a stronger review process.&lt;/p&gt;

&lt;p&gt;Step 5: Fixing the Security Issues&lt;/p&gt;

&lt;p&gt;Once the warnings were identified, the script was updated by removing:&lt;/p&gt;

&lt;p&gt;The hardcoded key&lt;br&gt;
The debug statement&lt;/p&gt;

&lt;p&gt;The corrected script became a simple placeholder notification script without exposing sensitive information.&lt;/p&gt;

&lt;p&gt;After staging the changes, the commit was attempted again.&lt;/p&gt;

&lt;p&gt;This time:&lt;/p&gt;

&lt;p&gt;✅ The Git pre-commit hook passed.&lt;/p&gt;

&lt;p&gt;✅ The AI review reported no issues.&lt;/p&gt;

&lt;p&gt;This demonstrated the importance of responding to automated feedback before moving forward.&lt;/p&gt;

&lt;p&gt;Step 6: Creating the Pull Request&lt;/p&gt;

&lt;p&gt;The final task involved:&lt;/p&gt;

&lt;p&gt;Pushing the feature branch&lt;br&gt;
Creating a Pull Request against the personal fork&lt;br&gt;
Using the AI-generated PR description as a starting point&lt;br&gt;
Reviewing and editing the AI draft before submission&lt;/p&gt;

&lt;p&gt;One important lesson became clear:&lt;/p&gt;

&lt;p&gt;AI can assist developers, but humans remain responsible for validating and approving every change before it becomes part of the codebase.&lt;/p&gt;

&lt;p&gt;Understanding the Agentic AI Workflow&lt;/p&gt;

&lt;p&gt;This assignment introduced a simple but powerful Agentic AI Loop:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Gather&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Collect repository information using Git commands such as:&lt;/p&gt;

&lt;p&gt;git status&lt;br&gt;
git diff&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Analyze&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Run:&lt;/p&gt;

&lt;p&gt;Git Pre-Commit Hook&lt;br&gt;
AI /pr-ready review&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Human Action&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Developers review findings, fix issues, and improve the code.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Verify&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Run the automated checks again to confirm everything passes successfully before committing.&lt;/p&gt;

&lt;p&gt;This workflow combines:&lt;/p&gt;

&lt;p&gt;Automation&lt;br&gt;
AI reasoning&lt;br&gt;
Human judgment&lt;/p&gt;

&lt;p&gt;to build more secure and reliable software.&lt;/p&gt;

&lt;p&gt;Key Learnings&lt;br&gt;
Built a custom Git pre-commit hook to detect secrets and prevent unsafe commits.&lt;br&gt;
Learned how rule-based automation differs from AI-powered contextual code reviews.&lt;br&gt;
Gained practical experience with Git feature branching, staging, committing, and Pull Request workflows.&lt;br&gt;
Understood how Agentic AI enhances developer productivity by reviewing code intelligently while keeping humans in control.&lt;br&gt;
Strengthened my understanding of DevSecOps by integrating security checks into the development workflow before code reaches the repository.&lt;br&gt;
Conclusion&lt;/p&gt;

&lt;p&gt;This assignment reinforced an important principle of modern software engineering:&lt;/p&gt;

&lt;p&gt;Security should begin before the first commit—not after deployment.&lt;/p&gt;

&lt;p&gt;Git hooks provide fast, automated protection against common mistakes, while AI-powered reviews offer contextual insights that traditional tools cannot provide alone. Together, they help developers deliver cleaner, safer, and higher-quality code.&lt;/p&gt;

&lt;p&gt;As AI continues to become an integral part of software development, combining automation, intelligent analysis, and human decision-making will be key to building reliable and secure applications.&lt;/p&gt;

&lt;p&gt;This post is part of the DevOps Micro Internship (DMI) with Agentic AI — Cohort 3 — by Pravin Mishra.&lt;br&gt;
My graded progress is public: &lt;a href="https://dmi.pravinmishra.com/s/DMI-C3-CharanTeja.html" rel="noopener noreferrer"&gt;https://dmi.pravinmishra.com/s/DMI-C3-CharanTeja.html&lt;/a&gt;&lt;br&gt;
Start your DevOps journey: &lt;a href="https://dmi.pravinmishra.com/?utm_source=student&amp;amp;utm_medium=ps-blog&amp;amp;utm_campaign=cohort3" rel="noopener noreferrer"&gt;https://dmi.pravinmishra.com/?utm_source=student&amp;amp;utm_medium=ps-blog&amp;amp;utm_campaign=cohort3&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Learn DevOps Through a Real Business Story: Building EpicReads from Scratch</title>
      <dc:creator>CharanTeja Chavithina</dc:creator>
      <pubDate>Sun, 26 Jul 2026 18:30:31 +0000</pubDate>
      <link>https://dev.to/charanteja_chavithina_b67/learn-devops-through-a-real-business-story-building-epicreads-from-scratch-4i67</link>
      <guid>https://dev.to/charanteja_chavithina_b67/learn-devops-through-a-real-business-story-building-epicreads-from-scratch-4i67</guid>
      <description>&lt;p&gt;To make it truly stand out, I'd create it as a "Learn DevOps Through a Real Business Story" series using EpicReads as the running case study. Each part would be detailed, practical, visually engaging, and written in a style suitable for Medium and LinkedIn.&lt;/p&gt;

&lt;p&gt;One limitation I should mention: I can't generate a long Word document with embedded custom illustrations directly in a single chat. While I can generate individual images, assembling a 40+ page illustrated document with dozens of custom graphics isn't something I can produce in one response.&lt;/p&gt;

&lt;p&gt;Here's what I can do instead—and it will give you a better result:&lt;/p&gt;

&lt;p&gt;Part 1: Building the Foundation&lt;/p&gt;

&lt;p&gt;I'll create:&lt;/p&gt;

&lt;p&gt;Internet basics&lt;br&gt;
DNS explained with the EpicReads example&lt;/p&gt;

&lt;p&gt;Part 1: How the Internet Delivers Every Book Order&lt;br&gt;
Packet Switching&lt;br&gt;
TCP/IP&lt;br&gt;
HTTP vs HTTPS&lt;br&gt;
Firewalls&lt;br&gt;
Load Balancers&lt;br&gt;
CDN&lt;/p&gt;

&lt;p&gt;Part 2: Building EpicReads&lt;br&gt;
Two-tier vs Three-tier Architecture&lt;br&gt;
Frontend&lt;br&gt;
Backend APIs&lt;br&gt;
Database&lt;br&gt;
Cache&lt;br&gt;
Scalability&lt;/p&gt;

&lt;p&gt;Part 3: Becoming a DevOps Engineer&lt;br&gt;
VS Code&lt;br&gt;
Git&lt;br&gt;
CI/CD&lt;br&gt;
Docker&lt;br&gt;
Kubernetes&lt;br&gt;
Monitoring&lt;br&gt;
Complete DevOps workflow&lt;/p&gt;

&lt;p&gt;This post is part of the DevOps Micro Internship (DMI) with Agentic AI — Cohort 3 — by &lt;a href="https://www.linkedin.com/in/pravin-mishra-aws-trainer/" rel="noopener noreferrer"&gt;Pravin Mishra&lt;/a&gt;. &lt;br&gt;
My graded progress is public: &lt;a href="https://dmi.pravinmishra.com/s/DMI-C3-CharanTeja.html" rel="noopener noreferrer"&gt;https://dmi.pravinmishra.com/s/DMI-C3-CharanTeja.html&lt;/a&gt;&lt;br&gt;
Start your DevOps journey: &lt;a href="https://dmi.pravinmishra.com/?utm_source=student&amp;amp;utm_medium=ps-blog&amp;amp;utm_campaign=cohort3" rel="noopener noreferrer"&gt;https://dmi.pravinmishra.com/?utm_source=student&amp;amp;utm_medium=ps-blog&amp;amp;utm_campaign=cohort3&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Week 3 DevOps Journey: AWS, Linux, Nginx &amp; Bash</title>
      <dc:creator>CharanTeja Chavithina</dc:creator>
      <pubDate>Thu, 23 Jul 2026 06:28:24 +0000</pubDate>
      <link>https://dev.to/charanteja_chavithina_b67/week-3-devops-journey-aws-linux-nginx-bash-4g1n</link>
      <guid>https://dev.to/charanteja_chavithina_b67/week-3-devops-journey-aws-linux-nginx-bash-4g1n</guid>
      <description>&lt;p&gt;Week 3 Summary – EpicReads Cloud Onboarding&lt;/p&gt;

&lt;p&gt;This week focused on building a strong foundation in cloud infrastructure, Linux administration, web server deployment, and automation through hands-on DevOps assignments.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Assignment 1&lt;/strong&gt; – AWS Free Tier Account Setup&lt;br&gt;
Created and configured an AWS Free Tier account.&lt;br&gt;
Learned AWS core services and Free Tier limits.&lt;br&gt;
Understood cloud security best practices and account setup.&lt;br&gt;
Launched and connected to an Ubuntu EC2 instance.&lt;br&gt;
&lt;strong&gt;Assignment 2 **– Deploy a React App on Ubuntu VM Using Nginx&lt;br&gt;
Installed and configured Nginx as a web server.&lt;br&gt;
Deployed a React application on an Ubuntu EC2 instance.&lt;br&gt;
Configured port 80 and verified application accessibility.&lt;br&gt;
Learned how web servers host modern frontend applications.&lt;br&gt;
**Assignment 3&lt;/strong&gt; – Production Maintenance Drill (Ops Checklist)&lt;br&gt;
Performed production readiness checks.&lt;br&gt;
Validated system health, running services, network connectivity, and server configuration.&lt;br&gt;
Practiced troubleshooting using Linux commands.&lt;br&gt;
Learned the importance of operational checklists in production environments.&lt;br&gt;
&lt;strong&gt;Assignment 4&lt;/strong&gt; – Deploy EpicReads Portfolio Website Using Nginx&lt;br&gt;
Hosted a static portfolio website on Nginx.&lt;br&gt;
Configured the web root and server settings.&lt;br&gt;
Verified successful deployment and browser accessibility.&lt;br&gt;
Gained practical experience in web application deployment.&lt;br&gt;
&lt;strong&gt;Assignment 5&lt;/strong&gt; – Bash Script Automation Drill&lt;br&gt;
Automated routine operational checks using Bash scripting.&lt;br&gt;
Created reusable scripts for service validation and system monitoring.&lt;br&gt;
Improved operational efficiency by reducing repetitive manual tasks.&lt;br&gt;
Learned scripting best practices for DevOps engineers.&lt;br&gt;
Key Takeaways&lt;br&gt;
Built a strong foundation in AWS, Linux, and Nginx.&lt;br&gt;
Learned how to deploy and host web applications on cloud infrastructure.&lt;br&gt;
Practiced production maintenance and troubleshooting techniques.&lt;br&gt;
Automated operational tasks using Bash scripting.&lt;br&gt;
Strengthened practical DevOps skills through real-world, hands-on assignments.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Overall Learning: Th&lt;/strong&gt;is week's assignments provided end-to-end exposure to setting up cloud infrastructure, deploying applications, maintaining production environments, and automating operational tasks—the core building blocks of a DevOps engineer's daily responsibilities.&lt;/p&gt;

&lt;p&gt;About DMI &amp;amp; CloudAdvisory&lt;/p&gt;

&lt;p&gt;DevOps Micro Internship (DMI) is a project-based DevOps program run by Pravin Mishra (The CloudAdvisory) focused on real-world execution, systems thinking, and career readiness.&lt;/p&gt;

&lt;p&gt;It helps learners build strong DevOps foundations with hands-on experience.&lt;/p&gt;

&lt;p&gt;This post is part of the DevOps Micro Internship (DMI) with Agentic AI — Cohort 3 — by Pravin Mishra.&lt;br&gt;
My graded progress is public: &lt;a href="https://dmi.pravinmishra.com/s/DMI-C3-CharanTeja.html" rel="noopener noreferrer"&gt;https://dmi.pravinmishra.com/s/DMI-C3-CharanTeja.html&lt;/a&gt;&lt;br&gt;
Start your DevOps journey: &lt;a href="https://dmi.pravinmishra.com/?utm_source=student&amp;amp;utm_medium=ps-blog&amp;amp;utm_campaign=cohort3" rel="noopener noreferrer"&gt;https://dmi.pravinmishra.com/?utm_source=student&amp;amp;utm_medium=ps-blog&amp;amp;utm_campaign=cohort3&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Reflection – Week 2</title>
      <dc:creator>CharanTeja Chavithina</dc:creator>
      <pubDate>Wed, 15 Jul 2026 06:20:09 +0000</pubDate>
      <link>https://dev.to/charanteja_chavithina_b67/reflection-week-2-5c3l</link>
      <guid>https://dev.to/charanteja_chavithina_b67/reflection-week-2-5c3l</guid>
      <description>&lt;h1&gt;
  
  
  Reflection – Week 2
&lt;/h1&gt;

&lt;p&gt;&lt;strong&gt;Name:&lt;/strong&gt; &lt;strong&gt;Chavithina Charan Teja&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Week 2 of the DevOps Micro Internship has been one of the most challenging and rewarding learning experiences in my career. Coming from a traditional DevOps and Site Reliability Engineering background, I initially thought this week would mainly be about learning another AI tool. Instead, I discovered an entirely new way of working with AI through Claude Code, Skills, Subagents, MCP, Hooks, Permissions, and Memory. Every single day introduced concepts that I had never used before, and the learning curve was much steeper than I expected.&lt;/p&gt;

&lt;p&gt;The journey started with something as basic as installing and configuring Claude Code. Even this first step was not straightforward. I faced installation issues, authentication challenges, and several configuration problems before I was finally able to get everything working correctly. Although these challenges were frustrating at first, they taught me an important lesson: every new technology requires patience, persistence, and hands-on practice. Solving each issue gave me more confidence to move on to the next topic.&lt;/p&gt;

&lt;p&gt;One of the biggest highlights of Week 2 was learning about Claude Code and understanding how AI can become an active engineering partner instead of just answering questions. Watching it generate infrastructure, automate repetitive tasks, and assist in development workflows completely changed my perspective on how software engineering and DevOps will evolve in the coming years.&lt;/p&gt;

&lt;p&gt;Another fascinating topic was Skills and Subagents. Initially, it was difficult to understand why we needed different skills and specialized agents. However, after completing the practical assignments, I realized how powerful this architecture is. Breaking complex work into smaller specialized agents makes automation more structured, reusable, and scalable. It felt very similar to designing microservices, but this time for AI-powered workflows.&lt;/p&gt;

&lt;p&gt;The topics of Hooks, Permissions, and Memory were equally exciting. Hooks demonstrated how automation can be triggered intelligently during different stages of a workflow. Permissions taught me the importance of maintaining security and control while allowing AI agents to perform actions. Memory was probably the most impressive feature because it showed how an AI agent can remember previous project decisions and continue working without requiring the same context repeatedly. This made me realize how much productivity can improve when AI becomes context-aware.&lt;/p&gt;

&lt;p&gt;The practical assignments throughout the week were extremely valuable. Every exercise required real implementation instead of simply watching videos or reading documentation. There were moments when I got stuck for hours while troubleshooting errors, understanding configurations, or figuring out why something wasn't working. Instead of skipping those problems, I kept experimenting until I found the solution. Those struggles became the most memorable learning moments because they strengthened my understanding far more than simply reading theory.&lt;/p&gt;

&lt;p&gt;The biggest mindset shift for me this week was realizing that learning AI-powered engineering is not about memorizing commands. It is about understanding workflows, experimenting continuously, asking better questions, and building practical solutions. This course has encouraged me to think differently about automation and has shown me that the future of DevOps is becoming increasingly agentic, where engineers collaborate with intelligent AI systems to deliver faster and more efficiently.&lt;/p&gt;

&lt;p&gt;One habit I am committed to implementing is dedicating every day after 9:00 PM exclusively to practicing everything I learn in this internship. Rather than only watching the sessions, I will recreate every practical demonstration, complete every assignment, and continue experimenting until I fully understand each concept. I believe consistency is far more valuable than occasional motivation, and this daily learning routine will help me build strong practical expertise in Agentic AI and modern DevOps.&lt;/p&gt;

&lt;p&gt;Finally, I would like to sincerely thank Pravin Mishra, Anajana, and all the mentors for designing such an outstanding learning experience. The course is filled with real-world practical demonstrations, challenging assignments, and industry-relevant content that pushes every learner beyond their comfort zone. The guidance, continuous updates, and hands-on approach make this internship truly different from traditional training programs. I am genuinely excited for the upcoming weeks and look forward to applying these new skills in real-world DevOps and AI engineering projects.&lt;br&gt;
About DMI &amp;amp; CloudAdvisory&lt;/p&gt;

&lt;p&gt;DevOps Micro Internship (DMI) is a project-based DevOps program run by Pravin Mishra (The CloudAdvisory) focused on real-world execution, systems thinking, and career readiness.&lt;/p&gt;

&lt;p&gt;It helps learners build strong DevOps foundations with hands-on experience.&lt;/p&gt;

&lt;p&gt;This post is part of the DevOps Micro Internship (DMI) with Agentic AI — Cohort 3 — by Pravin Mishra.&lt;br&gt;
My graded progress is public: &lt;a href="https://dmi.pravinmishra.com/s/DMI-C3-CharanTeja.html" rel="noopener noreferrer"&gt;https://dmi.pravinmishra.com/s/DMI-C3-CharanTeja.html&lt;/a&gt;&lt;br&gt;
Start your DevOps journey: &lt;a href="https://dmi.pravinmishra.com/?utm_source=student&amp;amp;utm_medium=ps-blog&amp;amp;utm_campaign=cohort3" rel="noopener noreferrer"&gt;https://dmi.pravinmishra.com/?utm_source=student&amp;amp;utm_medium=ps-blog&amp;amp;utm_campaign=cohort3&lt;/a&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>claude</category>
      <category>devjournal</category>
      <category>devops</category>
    </item>
    <item>
      <title>How the DevOps Micro Internship Strengthened My Engineering Leadership</title>
      <dc:creator>CharanTeja Chavithina</dc:creator>
      <pubDate>Fri, 03 Jul 2026 18:02:26 +0000</pubDate>
      <link>https://dev.to/charanteja_chavithina_b67/about-my-self-20ki</link>
      <guid>https://dev.to/charanteja_chavithina_b67/about-my-self-20ki</guid>
      <description>&lt;p&gt;This is Charan here&lt;/p&gt;

&lt;p&gt;I am currently working as an Technical manager and have experience in java microservices and production support. As a manager my focus is to enhance three pillars;system reliability operation excellence and team enablement. I led large technical teams and partnered with the global business stakeholders for delivery of stable&lt;/p&gt;

&lt;p&gt;secured&lt;/p&gt;

&lt;p&gt;and cost-efficient platforms. I manage cross-functional teams of around 40 members I ensure with owner ship models encourage incident management &amp;amp; ICA culture. I promote proactive communication with our stakeholders&lt;br&gt;
and establish/create a strong release management and deployment governance model involved in monitoring key metrics&lt;/p&gt;

&lt;p&gt;KPIs&lt;/p&gt;

&lt;p&gt;first contact resolution. And regularly engage with client stakeholders&lt;br&gt;&lt;br&gt;
conduct status review meetings and present reliability metrics. Right now at this stage of my career my focus has not just been on technical execution but also on building high performing teams&lt;/p&gt;

&lt;p&gt;maturing our engineering processes and aligning technology to the business outcome. My Continuous Learning Journey: Certifications That Shaped My Career in Site Reliability Engineering In the rapidly evolving technology industry&lt;/p&gt;

&lt;p&gt;About DMI &amp;amp; CloudAdvisory&lt;/p&gt;

&lt;p&gt;DevOps Micro Internship (DMI) is a project-based DevOps program run by Pravin Mishra (The CloudAdvisory) focused on real-world execution, systems thinking, and career readiness.&lt;/p&gt;

&lt;p&gt;It helps learners build strong DevOps foundations with hands-on experience.&lt;/p&gt;

&lt;p&gt;This post is part of the DevOps Micro Internship (DMI) with Agentic AI — Cohort 3 — by Pravin Mishra.&lt;br&gt;
My graded progress is public: &lt;a href="https://dmi.pravinmishra.com/s/DMI-C3-CharanTeja.html" rel="noopener noreferrer"&gt;https://dmi.pravinmishra.com/s/DMI-C3-CharanTeja.html&lt;/a&gt;&lt;br&gt;
Start your DevOps journey: &lt;a href="https://dmi.pravinmishra.com/?utm_source=student&amp;amp;utm_medium=ps-blog&amp;amp;utm_campaign=cohort3" rel="noopener noreferrer"&gt;https://dmi.pravinmishra.com/?utm_source=student&amp;amp;utm_medium=ps-blog&amp;amp;utm_campaign=cohort3&lt;/a&gt;&lt;/p&gt;

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