apiVersion: v1
kind: ConfigMap
metadata:
name: nginx-canary-html
namespace: nginx-canary
data:
index.html: |
Canary v2 - Hello from MCP
🐤 Canary Release
v2.0.0
Hello from MCP v2
Canary deployment — receiving experimental traffic
⚠ This is a CANARY build. Not yet promoted to stable.
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";
add_header X-Track "canary";
location / {
try_files $uri $uri/ =404;
}
}