From 2981a75cb73f31924d6ddfbee3cafb16469ad2e3 Mon Sep 17 00:00:00 2001 From: Allyson de Paula Date: Thu, 1 Jan 2026 11:30:55 -0300 Subject: [PATCH] Upload New File --- k8s/service.yaml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 k8s/service.yaml diff --git a/k8s/service.yaml b/k8s/service.yaml new file mode 100644 index 0000000..da359cf --- /dev/null +++ b/k8s/service.yaml @@ -0,0 +1,24 @@ +# ============================================================================= +# Service - node-bugado +# ============================================================================= +# +# Service ClusterIP para expor a aplicação internamente. +# Use com Ingress para acesso externo. +# +# ============================================================================= + +apiVersion: v1 +kind: Service +metadata: + name: node-bugado + labels: + app: node-bugado +spec: + type: ClusterIP + selector: + app: node-bugado + ports: + - name: http + port: 80 + targetPort: 3000 + protocol: TCP