k8s_flexget/flexget_lb.yml

20 lines
329 B
YAML
Raw Normal View History

2021-10-19 14:37:16 -04:00
---
apiVersion: v1
kind: Service
metadata:
name: flexget
annotations:
metallb.universe.tf/address-pool: default
2022-11-19 07:59:48 -05:00
metallb.universe.tf/allow-shared-ip: "dot83"
2021-10-19 14:37:16 -04:00
spec:
2022-11-19 07:59:48 -05:00
loadBalancerIP: 192.168.20.83
2021-10-19 14:37:16 -04:00
ports:
- port: 5050
targetPort: 5050
name: port5050
2021-10-19 14:37:16 -04:00
selector:
app: flexget
type: LoadBalancer
# EOF