From 51b726bcefab0ff41327af4cfc17a7f7c37f5900 Mon Sep 17 00:00:00 2001 From: Claude AI Date: Tue, 3 Mar 2026 06:47:33 +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