apiVersion: v1 kind: ConfigMap metadata: name: nginx-mcp-html namespace: nginx-mcp data: index.html: | Hello from MCP
🤖 MCP Powered

Hello from MCP

Deployed via AI-assisted GitOps pipeline

Your Internal IP Address
Detecting...
nginx.conf: | server { listen 80; server_name _; root /usr/share/nginx/html; index index.html; location / { try_files $uri $uri/ =404; } }