In this video, I'll demonstrate how I setup the ingress type "LoadBalancer" on my VMware hosted OpenShift Container Platform lab environment.
Ref:
Configuring ExternalIPs for services https://docs.openshift.com/container-platform/4.8/networking/configuring_ingress_cluster_traffic/configuring-externalip.html
Service script:
```
apiVersion: v1
kind: Service
metadata:
name: loadbalancer
spec:
ports:
- name: db
port: $port
loadBalancerIP:
type: LoadBalancer
selector:
deployment: $name
```