2025-06-15 13:52:26 +00:00

17 lines
277 B
YAML

# deployment/manifests/service.yaml
apiVersion: v1
kind: Service
metadata:
name: restaurant-api-service
labels:
app: restaurant-api
spec:
type: ClusterIP
ports:
- port: 80
targetPort: 18000
protocol: TCP
name: http
selector:
app: restaurant-api