From c51963cf58e52f6bfc8aeab22647842523e67b2b Mon Sep 17 00:00:00 2001 From: Claude AI Date: Sun, 1 Mar 2026 21:30:01 +0000 Subject: [PATCH] chore: remove nginx-mcp --- apps/nginx-mcp/configmap.yaml | 126 ---------------------------------- 1 file changed, 126 deletions(-) delete mode 100644 apps/nginx-mcp/configmap.yaml diff --git a/apps/nginx-mcp/configmap.yaml b/apps/nginx-mcp/configmap.yaml deleted file mode 100644 index 4e68249..0000000 --- a/apps/nginx-mcp/configmap.yaml +++ /dev/null @@ -1,126 +0,0 @@ -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; - } - }