From 37eabf1eb92f02e2461c0d431e6efb00335aa6a3 Mon Sep 17 00:00:00 2001 From: Claude AI Date: Sun, 1 Mar 2026 21:13:11 +0000 Subject: [PATCH] feat: add nginx-canary service --- apps/nginx-canary/service.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 apps/nginx-canary/service.yaml diff --git a/apps/nginx-canary/service.yaml b/apps/nginx-canary/service.yaml new file mode 100644 index 0000000..875a6b1 --- /dev/null +++ b/apps/nginx-canary/service.yaml @@ -0,0 +1,16 @@ +apiVersion: v1 +kind: Service +metadata: + name: nginx-canary + namespace: nginx-canary + labels: + app: nginx-canary + track: canary +spec: + selector: + app: nginx-canary + ports: + - name: http + port: 80 + targetPort: 80 + type: ClusterIP