25 lines
598 B
YAML
25 lines
598 B
YAML
# =============================================================================
|
|
# 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
|