vSphere with Tanzu on NSX-T: Part 8 – Load Balancer

vSphere with Tanzu on NSX-T: Part 8 – Load Balancer

This is part 8 of a series of videos discussing vSphere with Tanzu on NSX-T where I will demonstrate how to configure and operate vSphere with Tanzu on NSX-T. In this video we look at the creation of Services of Type Load Balancer and we’ll look at how the Layer 4 Load Balancer is being configured in NSX-T and how to discover all related networking objects.

nginx-service-lb.yaml

apiVersion: v1
kind: Service
metadata:
  name: nginx-service-lb
  labels:
    app: nginx
spec:
  type: LoadBalancer
  ports:
    # the port that this service should serve on
    - port: 80
      targetPort: 80
      protocol: TCP
      name: tcp
  selector:
      app: nginx 	
#    tier: frontend

Leave a Reply

Your email address will not be published. Required fields are marked *