18 lines
322 B
YAML
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
|