From ff426fd6aac33b70193174e7255026c372fda4f8 Mon Sep 17 00:00:00 2001 From: Claude AI Date: Tue, 3 Mar 2026 07:20:30 +0000 Subject: [PATCH] feat(nginx-mcp): add configmap with purple UI v1 stable --- apps/nginx-mcp/configmap.yaml | 111 ++++++++++++++++++++++++++++++++++ 1 file changed, 111 insertions(+) create mode 100644 apps/nginx-mcp/configmap.yaml diff --git a/apps/nginx-mcp/configmap.yaml b/apps/nginx-mcp/configmap.yaml new file mode 100644 index 0000000..dd292ef --- /dev/null +++ b/apps/nginx-mcp/configmap.yaml @@ -0,0 +1,111 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: nginx-mcp-html + namespace: nginx-mcp +data: + index.html: | + + + + + + Hello from MCP - v1 Stable + + + +
+
🤖 MCP Powered

+
v1 stable
+

Hello from MCP

+

Deployed via AI-assisted GitOps pipeline

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