From 89650a3aac398df5b72a2511a811092fb3bfacf4 Mon Sep 17 00:00:00 2001 From: Claude AI Date: Sun, 1 Mar 2026 21:12:22 +0000 Subject: [PATCH] feat: add nginx-mcp service --- apps/nginx-mcp/service.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 apps/nginx-mcp/service.yaml diff --git a/apps/nginx-mcp/service.yaml b/apps/nginx-mcp/service.yaml new file mode 100644 index 0000000..9f89877 --- /dev/null +++ b/apps/nginx-mcp/service.yaml @@ -0,0 +1,16 @@ +apiVersion: v1 +kind: Service +metadata: + name: nginx-mcp + namespace: nginx-mcp + labels: + app: nginx-mcp + track: stable +spec: + selector: + app: nginx-mcp + ports: + - name: http + port: 80 + targetPort: 80 + type: ClusterIP