Files
playground/.k8s/service.yaml
2025-11-28 11:08:02 -06:00

16 lines
269 B
YAML

apiVersion: v1
kind: Service
metadata:
name: playground-service
namespace: apps
labels:
app: playground
spec:
type: ClusterIP
selector:
app: playground
ports:
- port: 80
targetPort: 3000
protocol: TCP