sae5dc03-tp/tp5/web_service.yaml
2025-11-12 16:51:07 +01:00

15 lines
330 B
YAML

apiVersion: v1
kind: Service
metadata:
name: app
namespace: {{ .Values.namespace }}
spec:
selector:
app: web
ports:
- name: http-app
protocol: TCP
port: {{ .Values.web.port }}
targetPort: 5000
nodePort: {{ .Values.web.nodePort }}
type: {{ .Values.web.serviceType | default "ClusterIP" }}