RSRavichandran Sundaramurthyinravidevops.hashnode.dev·May 5, 2025 · 4 min readBuilding a Multi-Language Microservice Project with Kubernetes, ArgoCD, and DevSecOpsIntroduction This blog post walks through my implementation of a multi-language microservice project (Java, Python, Go) deployed on Kubernetes, automated with ArgoCD (GitOps), and secured via DevSecOps practices (Trivy scanning, GitHub Actions CI/CD)...00
RSRavichandran Sundaramurthyinravidevops.hashnode.dev·Apr 14, 2025 · 2 min readEnd-to-End CI/CD Pipeline for Spring Boot on Kubernetes Using Argo CDI've successfully completed an end-to-end CI/CD pipeline that automates the entire CI/CD process for a spring boot application deployed in Kuberenetes using Argo CD. My github repo can be found here Github RepoThe pipeline follows this workflow: De...00
RSRavichandran Sundaramurthyinravidevops.hashnode.dev·Apr 14, 2025 · 1 min readHow To Install Multiple Packages On Linux VM#!/bin/bash## Installing multiple packagesif [[ $# -eq 0 ]]; thenecho "Usage: $0 pkg1 pkg2"exit 1fiif [[ $(id -u) -ne 0 ]]; thenecho "Please run as root user or with sudo privileges"exit 2fifor each_pkg in "$@"; doif which "$each_pkg" > /dev/null; th...00
RSRavichandran Sundaramurthyinravidevops.hashnode.dev·Apr 12, 2025 · 4 min readDeploy EC2 with TerraformAutomating AWS EC2 Instance Deployment with Terraform: A Step-by-Step Guide In this blog post, I’ll walk you through a Terraform configuration that creates an AWS EC2 instance. The code leverages Terraform's powerful features, such as data sources, v...00