19 lines
503 B
YAML
19 lines
503 B
YAML
|
|
# ClusterIP on purpose: this was type LoadBalancer for ~2 years, but klipper-lb
|
||
|
|
# can never bind host port 80 (svclb-traefik owns it on every node), so the
|
||
|
|
# svclb pods sat Pending forever. Traffic flows through the ingress. Changed
|
||
|
|
# to ClusterIP 2026-07-26.
|
||
|
|
apiVersion: v1
|
||
|
|
kind: Service
|
||
|
|
metadata:
|
||
|
|
name: unifiedstreaming-svc
|
||
|
|
namespace: unified-streaming
|
||
|
|
spec:
|
||
|
|
type: ClusterIP
|
||
|
|
selector:
|
||
|
|
app: unifiedstreaming
|
||
|
|
ports:
|
||
|
|
- name: http
|
||
|
|
port: 80
|
||
|
|
targetPort: 80
|
||
|
|
protocol: TCP
|