skip to Main Content

How to set static private IP address for Load Balancer. Kubernetes/AWS – Amazon Web Sevices

I am trying to set a static private IP address for a Kubernetes loadbalancer service during its creation: apiVersion: v1 kind: Service metadata: name: web-server-service-lb namespace: web annotations: service.beta.kubernetes.io/aws-load-balancer-type: "nlb-ip" service.beta.kubernetes.io/aws-load-balancer-internal: "true" service.beta.kubernetes.io/aws-load-balancer-private-ipv4-addresses: "10.9.4.55, 10.9.1.55" service.beta.kubernetes.io/aws-load-balancer-subnets: "subnet-02500d74cef5fef04, subnet-0e32bdf9ae9de8145" spec: type:…

VIEW QUESTION
Back To Top
Search