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