diff --git a/apps/nginx-canary/configmap.yaml b/apps/nginx-canary/configmap.yaml deleted file mode 100644 index 978b7a9..0000000 --- a/apps/nginx-canary/configmap.yaml +++ /dev/null @@ -1,189 +0,0 @@ -apiVersion: v1 -kind: ConfigMap -metadata: - name: nginx-canary-html - namespace: nginx-canary -data: - index.html: | - - - - - - Canary v2 - Hello from MCP - - - -
-
🐤 Canary Release
-

Hello from MCP v2

-

Canary deployment — receiving experimental traffic

-
- ⚠️ This is a CANARY build. Not yet promoted to stable. -
-
-
Your IP Address
-
Detecting...
-
-
-
-
Track
-
canary
-
-
-
Version
-
v2.0.0
-
-
-
Image
-
nginx:1.25-alpine
-
-
-
Replicas
-
2
-
-
- -
- - - - nginx.conf: | - server { - listen 80; - server_name _; - root /usr/share/nginx/html; - index index.html; - add_header X-Version "v2.0.0"; - add_header X-Track "canary"; - location / { - try_files $uri $uri/ =404; - } - }