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
+
+
+
+ ⚠ This is a CANARY build — not for production use
+
+
Canary Release
+
Hello from MCP v2
+
v2.0.0 canary
+
+
Your IP Address
+
detecting...
+
+
+
+
+
+
+ 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; }
+ }