vSphere with Tanzu on NSX-T: Part 9 – Ingress

vSphere with Tanzu on NSX-T: Part 9 – Ingress

This is part 9 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 Ingress and we’ll look at how a Layer 7 Load Balancer is being configured in NSX-T and how to discover all related networking objects.

Ingress.yaml

apiVersion: extensions/v1beta1
kind: Ingress
metadata:
  name: nginx-ingress
spec:
  rules:
  - host: ingress.ray.salab.local
    http:
      paths:
      - backend:
          serviceName: nginx-service
          servicePort: 80

Leave a Reply

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