From 2774754785a08329a5ebe7160691c32df4a5a51f Mon Sep 17 00:00:00 2001 From: Claude AI Date: Tue, 3 Mar 2026 07:15:43 +0000 Subject: [PATCH] chore: cleanup nginx-weighted --- apps/nginx-weighted/traefikservice.yaml | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 apps/nginx-weighted/traefikservice.yaml diff --git a/apps/nginx-weighted/traefikservice.yaml b/apps/nginx-weighted/traefikservice.yaml deleted file mode 100644 index 1ed0bf4..0000000 --- a/apps/nginx-weighted/traefikservice.yaml +++ /dev/null @@ -1,23 +0,0 @@ ---- -# TraefikService — weighted load balancer between stable and canary -# Edit weights to control traffic split: -# stable: 90, canary: 10 → 10% to canary (initial test) -# stable: 50, canary: 50 → 50% to canary (extended testing) -# stable: 0, canary: 100 → full promote canary to stable -# stable: 100, canary: 0 → emergency rollback -apiVersion: traefik.io/v1alpha1 -kind: TraefikService -metadata: - name: nginx-weighted - namespace: nginx-mcp -spec: - weighted: - services: - - name: nginx-mcp - namespace: nginx-mcp - port: 80 - weight: 90 - - name: nginx-canary-proxy - namespace: nginx-mcp - port: 80 - weight: 10