From 055030d88cb02671e46df1fb6693c83381d5747a Mon Sep 17 00:00:00 2001 From: Nicolai Ort Date: Fri, 24 Feb 2023 21:41:53 +0100 Subject: [PATCH] Added redis service port names [CI SKIP] --- .argo/service.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.argo/service.yaml b/.argo/service.yaml index e70c7dd..c0ef060 100644 --- a/.argo/service.yaml +++ b/.argo/service.yaml @@ -12,6 +12,7 @@ spec: selector: app: npm-cache clusterIP: None + --- apiVersion: v1 kind: Service @@ -22,8 +23,10 @@ metadata: app: npm-cache-redis spec: ports: - - port: 8080 + - port: 8001 + name: web - port: 6379 + name: redis selector: app: npm-cache-redis clusterIP: None