Homepage/k8s/service.yaml
Alexis Bruneteau 50f5234488 init
2025-09-04 17:17:18 +02:00

16 lines
283 B
YAML

apiVersion: v1
kind: Service
metadata:
name: homepage
namespace: homepage
labels:
app.kubernetes.io/name: homepage
spec:
type: ClusterIP
ports:
- port: 3000
targetPort: http
protocol: TCP
name: http
selector:
app.kubernetes.io/name: homepage