diff --git a/whoami/base/whoami-svc.yaml b/whoami/base/whoami-svc.yaml index 5a00c25..f34351e 100644 --- a/whoami/base/whoami-svc.yaml +++ b/whoami/base/whoami-svc.yaml @@ -9,3 +9,45 @@ spec: targetPort: web selector: app: whoami +--- +apiVersion: v1 +kind: Service +metadata: + name: whoami-np + namespace: whoami +spec: + type: NodePort + ports: + - nodePort: 30007 + port: 80 + targetPort: 80 + selector: + app: whoami +--- +apiVersion: v1 +kind: Service +metadata: + name: traefik-np + namespace: traefik +spec: + type: NodePort + ports: + - nodePort: 30010 + port: 80 + targetPort: 80 + selector: + app: traefik +--- +apiVersion: v1 +kind: Service +metadata: + name: traefik-npssl + namespace: whoami +spec: + type: NodePort + ports: + - nodePort: 30011 + port: 443 + targetPort: 443 + selector: + app: traefik