From 62f8c2c476ebab8c2aa32f5bf9036d4de0b3760d Mon Sep 17 00:00:00 2001 From: Claude AI Date: Mon, 2 Mar 2026 14:01:19 +0000 Subject: [PATCH] feat: add nginx-mcp service - ClusterIP port 80 --- apps/nginx-mcp/service.yaml | 15 +++++++++++++++ 1 file changed, 15 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..5c88724 --- /dev/null +++ b/apps/nginx-mcp/service.yaml @@ -0,0 +1,15 @@ +apiVersion: v1 +kind: Service +metadata: + name: nginx-mcp + namespace: nginx-mcp + labels: + app: nginx-mcp +spec: + selector: + app: nginx-mcp + ports: + - protocol: TCP + port: 80 + targetPort: 80 + type: ClusterIP