From e0d2e013ea29aa8cf75d8590009c49f929792e37 Mon Sep 17 00:00:00 2001 From: VIPIN Date: Thu, 11 Sep 2025 11:31:03 +0530 Subject: [PATCH] Update app message for Jenkins-Kubernetes pipeline test --- app/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/index.js b/app/index.js index 66bb42f..43fe9e7 100644 --- a/app/index.js +++ b/app/index.js @@ -2,7 +2,7 @@ const http = require('http'); const server = http.createServer((req, res) => { res.writeHead(200, { 'Content-Type': 'text/plain' }); - res.end('🚀 New Deployment: Hello vipin.This is Jenkins + Minikube pipeline!\n'); + res.end('🚀 New Deployment: Hello vipin.This is Jenkins + newly updated Minikube pipeline!\n'); }); const PORT = 3000;