-
Notifications
You must be signed in to change notification settings - Fork 96
Closed
Labels
Description
Request to support LoadBalancerIP Field - so that LB is created with user specified IP (i.e. service will be exposed on same IP across service deletes and restarts)
https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer
Example
kind: Service
apiVersion: v1
metadata:
name: my-service
spec:
selector:
app: MyApp
ports:
- protocol: TCP
port: 80
targetPort: 9376
clusterIP: 10.0.171.239
loadBalancerIP: 78.11.24.19
type: LoadBalancer
status:
loadBalancer:
ingress:
- ip: 146.148.47.155k3a, andreshans, ykrsm and AnjanaAK