From cdf0652879b2c5fff02a7a99c749639d14390d38 Mon Sep 17 00:00:00 2001 From: Claude AI Date: Sun, 1 Mar 2026 19:44:47 +0000 Subject: [PATCH] chore: remove nginx app --- apps/nginx/deployment.yaml | 48 -------------------------------------- 1 file changed, 48 deletions(-) delete mode 100644 apps/nginx/deployment.yaml diff --git a/apps/nginx/deployment.yaml b/apps/nginx/deployment.yaml deleted file mode 100644 index a2ae103..0000000 --- a/apps/nginx/deployment.yaml +++ /dev/null @@ -1,48 +0,0 @@ -apiVersion: apps/v1 -kind: Deployment -metadata: - name: nginx - namespace: nginx - labels: - app: nginx -spec: - replicas: 2 - selector: - matchLabels: - app: nginx - template: - metadata: - labels: - app: nginx - spec: - containers: - - name: nginx - image: nginx:1.25-alpine - ports: - - containerPort: 80 - resources: - requests: - cpu: 50m - memory: 64Mi - limits: - cpu: 200m - memory: 128Mi - livenessProbe: - httpGet: - path: / - port: 80 - initialDelaySeconds: 10 - periodSeconds: 30 - readinessProbe: - httpGet: - path: / - port: 80 - initialDelaySeconds: 5 - periodSeconds: 10 - volumeMounts: - - name: nginx-config - mountPath: /etc/nginx/conf.d - volumes: - - name: nginx-config - configMap: - name: nginx-config