From 53a3780718eed25cd01e8fd9cd3d056c7e64b6ad Mon Sep 17 00:00:00 2001 From: admin Date: Sun, 1 Mar 2026 20:11:52 +0000 Subject: [PATCH] Created via MCP --- apps/nginx-mcp/deployment.yaml | 52 ++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 apps/nginx-mcp/deployment.yaml diff --git a/apps/nginx-mcp/deployment.yaml b/apps/nginx-mcp/deployment.yaml new file mode 100644 index 0000000..882587a --- /dev/null +++ b/apps/nginx-mcp/deployment.yaml @@ -0,0 +1,52 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: nginx-mcp + namespace: nginx-mcp + labels: + app: nginx-mcp +spec: + replicas: 3 + selector: + matchLabels: + app: nginx-mcp + template: + metadata: + labels: + app: nginx-mcp + spec: + containers: + - name: nginx + image: nginx:1.25-alpine + ports: + - containerPort: 80 + volumeMounts: + - name: html + mountPath: /usr/share/nginx/html/index.html + subPath: index.html + - name: html + mountPath: /etc/nginx/conf.d/default.conf + subPath: nginx.conf + resources: + requests: + cpu: 50m + memory: 64Mi + limits: + cpu: 200m + memory: 128Mi + readinessProbe: + httpGet: + path: / + port: 80 + initialDelaySeconds: 5 + periodSeconds: 10 + livenessProbe: + httpGet: + path: / + port: 80 + initialDelaySeconds: 10 + periodSeconds: 20 + volumes: + - name: html + configMap: + name: nginx-mcp-html