Files
cannaiq/backend/k8s/service.yaml
2025-11-28 19:45:44 -07:00

18 lines
322 B
YAML

apiVersion: v1
kind: Service
metadata:
name: dutchie-backend
namespace: default
labels:
app: dutchie-backend
spec:
type: LoadBalancer # This will provision a public IP
ports:
- port: 80
targetPort: 3010
protocol: TCP
name: http
selector:
app: dutchie-backend
sessionAffinity: ClientIP