From c02e2b29c76ceddc884c8e072e7dfcbb2b3c5952 Mon Sep 17 00:00:00 2001 From: Claude AI Date: Wed, 4 Mar 2026 18:39:36 +0000 Subject: [PATCH] =?UTF-8?q?feat:=20nginx-canary=20service=20=E2=80=94=20Cl?= =?UTF-8?q?usterIP=20port=2080?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 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