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;