Voice commands enabled. Try saying "dark mode" or "show projects"
DevOps Terminal Game
Welcome to DevOps Terminal Game!
Type 'help' to see available commands
$
$

Hello, I'm Hemanth

CSE Student & |

Building scalable cloud infrastructure and automating deployment pipelines with a focus on microservices architecture.

hemanth@portfolio:~
$ whoami
Hemanth Issai - CSE Student & Cloud DevOps Engineer
$ cat specialty.txt
Specializing in Cloud Infrastructure, Microservices, CI/CD Pipelines & Containerization
$ find ./projects --type=f -name "*.yml" | head -5
./projects/microservices-cars/docker-compose.yml
./projects/car-database/deployment.yml
./projects/monolithic-car-project/Dockerfile
$ _

Cloud Architecture Visualizer

Docker
K8s
DB
API
Monitor

Interactive Architecture

Operational

Click on any service to see details

Containers 8
Uptime 99.9%
Load 42%

About Me

Cloud & DevOps Engineer

I'm a Computer Science Engineering student passionate about cloud infrastructure, microservices architecture, and DevOps practices. My journey in technology is driven by the desire to build scalable, efficient, and automated systems.

With hands-on experience in Docker containerization, CI/CD pipelines, and cloud deployment, I specialize in transforming traditional applications into modern, containerized microservices architectures.

Mission

Bridge development and operations through automation and best practices

Approach

Infrastructure as Code, Continuous Deployment, and Monitoring-driven development

Education

B.Tech in Computer Science & Engineering at Lovely Professional University

Tech Stack Overview

Containerization
90%
Version Control
85%
Cloud Infrastructure
80%
CI/CD Pipelines
75%

Current Interests

Kubernetes Orchestration AWS Cloud Services Python Development Full Stack Development Monitoring & Observability Serverless Architecture

DevOps Projects

Cars Database Microservices

Docker

A fully containerized microservices architecture for car database management with separate services for API, database, and frontend.

Docker Microservices MongoDB Node.js

Car Database DevOps Project

Full DevOps

Complete DevOps implementation with Git workflow, CI/CD, and live deployment showcasing authentication and search functionality.

Git JavaScript GitHub Pages Auth

Monolithic Car Project

Dockerized

Dockerized monolithic application serving as a comparison to microservices architecture, running exclusively in containers.

Docker Monolithic Single Container

Tech Stack & Monitoring

Tech Stack Radar

Expert
Proficient
Familiar

Docker

Expert
3 years experience

Containerization platform for packaging and deploying applications

Projects: Cars Database Microservices, Monolithic Car Project

Microservices Health

Live Docker Hub
Frontend Operational
Car Service 14 cars
Auth Service JWT Active
User Service 3 users
Redis Cache Connected
API Gateway Load Balanced

Container Performance

CPU Memory
API
DB
Auth
Frontend

Docker Hub Activity

heamnth345/microservices-cars 97+ pulls
Live
heamnth345/monolithic-car-project Published
Live

Certifications & Training

Cloud Computing Internship

EDU TANTR

Completed Cloud Computing internship with practical exposure to professional work settings and cloud infrastructure.

View Certificate

Data Structures & Algorithms

CipherSchools

70 hours of intensive training in Data Structures and Algorithms using Java Programming.

View Certificate

Computer Science Engineering

Lovely Professional University

Bachelor of Technology in Computer Science & Engineering with specialization in Cloud Computing and DevOps.

Cloud Computing DevOps Microservices

DevOps Code Snippets

Dockerfile
# Microservices API Dockerfile
FROM node:18-alpine
WORKDIR /app
COPY package*.json ./
RUN npm ci --only=production
COPY . .
EXPOSE 3000
USER node
CMD ["node", "server.js"]
docker-compose.yml
version: '3.8'
services:
  api:
    build: ./api
    ports:
      - "3000:3000"
    environment:
      - NODE_ENV=production
      - DB_HOST=mongodb
    depends_on:
      - mongodb
  
  mongodb:
    image: mongo:latest
    volumes:
      - mongo-data:/data/db
  
volumes:
  mongo-data:
Git Workflow
# Initialize and connect to GitHub
git init
git add .
git commit -m "Initial commit: Car Database Project"
git branch -M main
git remote add origin https://github.com/Hemanth870-tech/car-database
git push -u origin main

# Feature branch workflow
git checkout -b feature/search-functionality
git add .
git commit -m "Add advanced search functionality"
git push origin feature/search-functionality
GitHub Actions Workflow
name: CI/CD Pipeline
on: [push]
jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - name: Build Docker image
        run: docker build -t car-database .
      - name: Run tests
        run: docker run car-database npm test
Useful DevOps Commands
# Docker Commands
docker ps -a                          # List all containers
docker images                         # List all images
docker-compose up -d                  # Start services in background
docker logs [container]               # View container logs

# Git Commands
git status                           # Check repository status
git log --oneline --graph           # View commit history
git diff                            # See changes
git stash                           # Temporarily save changes

Get In Touch

Connect With Me

Voice Commands

Try saying:

  • "Switch to dark mode"
  • "Show my projects"
  • "Open terminal game"
  • "Go to contact section"
  • "Start voice control"

Send a Message