From e27c8ddf6e95e645b0cbfe8e689fdde20d29cb0c Mon Sep 17 00:00:00 2001 From: Joe Monk Date: Sun, 4 Aug 2024 01:04:23 +0100 Subject: [PATCH] Move some ports around --- apps/whoami/ingress.yaml | 1 + apps/whoami/service.yaml | 9 +++------ 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/apps/whoami/ingress.yaml b/apps/whoami/ingress.yaml index 4e2c734..61ab9fa 100644 --- a/apps/whoami/ingress.yaml +++ b/apps/whoami/ingress.yaml @@ -11,4 +11,5 @@ spec: services: - name: podinfo namespace: apps + kind: Service port: 9898 \ No newline at end of file diff --git a/apps/whoami/service.yaml b/apps/whoami/service.yaml index 0d26eca..27ea3a3 100644 --- a/apps/whoami/service.yaml +++ b/apps/whoami/service.yaml @@ -9,9 +9,6 @@ spec: ports: - name: http port: 9898 - protocol: TCP - targetPort: http - - port: 9999 - targetPort: grpc - protocol: TCP - name: grpc \ No newline at end of file + - name: grpc + port: 9999 + protocol: TCP \ No newline at end of file