From 26778baba200e06cee47ab4912095d0c42d40074 Mon Sep 17 00:00:00 2001 From: Claude AI Date: Mon, 2 Mar 2026 14:03:30 +0000 Subject: [PATCH] feat: add nginx-canary configmap - v2 amber gradient with canary banner --- apps/nginx-canary/configmap.yaml | 61 ++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 apps/nginx-canary/configmap.yaml diff --git a/apps/nginx-canary/configmap.yaml b/apps/nginx-canary/configmap.yaml new file mode 100644 index 0000000..e807a43 --- /dev/null +++ b/apps/nginx-canary/configmap.yaml @@ -0,0 +1,61 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: nginx-canary-config + namespace: nginx-canary +data: + index.html: | + + + + + MCP Canary v2 + + + + +
+
Canary Release
+

Hello from MCP v2

+
v2.0.0 canary
+
+
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" always; + add_header X-Track "canary" always; + location / { try_files $uri $uri/ /index.html; } + location /healthz { return 200 'ok'; add_header Content-Type text/plain; } + }