Update app message for Jenkins-Kubernetes pipeline test

This commit is contained in:
VIPIN 2025-09-11 11:31:03 +05:30
parent bef66b64f0
commit e0d2e013ea

View File

@ -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;