Maven Chapter 1 – Introduction to Maven Sabse pehle ek question. Maan le tune ek Java project banaya. Ab tujhe chahiye: MySQL Driver Spring Boot JUnit Lombok Ye sab kaise add karega? Agar Maven nahi Jun 27, 2026·14 min read
Deploying a Node.js Application on Kubernetes with Jenkins, Docker, and Kind: A Step-by-Step GuideMar 10, 2025·8 min read
git reset and revertgit reset first create 3 commit touch a.tx t ubuntu@LAPTOP-7E5UNQJ4:~/git-tutorial/devops-practice-project$ ls a.txt ubuntu@LAPTOP-7E5UNQJ4:~/git-tutorial/devops-practice-project$ git add a. txt ubuntu@LAPTOP-7E5UNQJ4:~/git-tutorial/devops-practice...Jan 26, 2025·3 min read
Git cherry pickgit checkout dev Switched to branch 'dev' git log --oneline 25243de (HEAD -> dev) added feat -1 for dev 8ccd4a8 feature : added lailan majnu touch ch.txt git add ch.txt git commit -m "i add ch.txt for cherrypick" git log --oneline cd755f9 (HEAD...Jan 26, 2025·2 min read
merge conflictsgit checkout -b dev Switched to a new branch 'dev' vim feature1.txt git add feature1.txt git commit -m "added feat -1 for dev" git checkout master Switched to branch 'master' vim feature1.txt git ad d feature1.txt git co mmit -m "added master feat...Jan 26, 2025·2 min read
service awsAWS service mentioned in script: 1. EC2 (Elastic Compute Cloud) Description: EC2 is a web service that provides resizable compute capacity in the cloud. It allows users to launch and manage virtual servers (instances) on demand. Users can choose the...Nov 27, 2024·4 min read
Namespaces Explained: A Beginner's OverviewWhat is Namespace? Logically Organizing your resources within your cluster. It is nothing but virtual cluster inside the cluster. Example: when multiple teams are involved and each working in different micro service app, then we have a dedicated name...Nov 23, 2024·5 min read
Kubernetes Multi Node Cluster Setup Kindday 6 piyush For AMD64 / x86_64 [ $(uname -m) = x86_64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.24.0/kind-linux-amd64 For ARM64 [ $(uname -m) = aarch64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.24.0/kind-linux-arm64 chmod +x ./ki...Nov 16, 2024·1 min read