From a4670369c970cd12d364d83ddcac98616622add5 Mon Sep 17 00:00:00 2001 From: Joe Monk Date: Fri, 16 Feb 2024 23:02:55 +0000 Subject: [PATCH] Add the whoami service --- apps/whoami/kustomization.yaml | 3 ++- apps/whoami/service.yaml | 2 -- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/apps/whoami/kustomization.yaml b/apps/whoami/kustomization.yaml index f553eb8..fd7052c 100644 --- a/apps/whoami/kustomization.yaml +++ b/apps/whoami/kustomization.yaml @@ -2,4 +2,5 @@ apiVersion: kustomize.config.k8s.io/v1beta1 kind: Kustomization namespace: apps resources: -- deployment.yaml \ No newline at end of file +- deployment.yaml +- service.yaml \ No newline at end of file diff --git a/apps/whoami/service.yaml b/apps/whoami/service.yaml index 21dfb58..692867b 100644 --- a/apps/whoami/service.yaml +++ b/apps/whoami/service.yaml @@ -3,12 +3,10 @@ kind: Service metadata: name: whoami namespace: apps - spec: ports: - name: web port: 80 targetPort: web - selector: app: whoami \ No newline at end of file