From 401ce08add3a8145b70ac4eb205e571a74c30420 Mon Sep 17 00:00:00 2001 From: Claude AI Date: Tue, 3 Mar 2026 07:14:13 +0000 Subject: [PATCH] chore: cleanup nginx-canary --- apps/nginx-canary/deployment.yaml | 56 ------------------------------- 1 file changed, 56 deletions(-) delete mode 100644 apps/nginx-canary/deployment.yaml diff --git a/apps/nginx-canary/deployment.yaml b/apps/nginx-canary/deployment.yaml deleted file mode 100644 index 0e5b363..0000000 --- a/apps/nginx-canary/deployment.yaml +++ /dev/null @@ -1,56 +0,0 @@ -apiVersion: apps/v1 -kind: Deployment -metadata: - name: nginx-canary - namespace: nginx-canary - labels: - app: nginx-canary - track: canary - version: v2.0.0 -spec: - replicas: 2 - selector: - matchLabels: - app: nginx-canary - template: - metadata: - labels: - app: nginx-canary - track: canary - version: v2.0.0 - 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-canary-html