The tls section is added like the below:
tls:
secretName: tap-default-tls
namespace: tanzu-system-ingresss
The Contour overlay is also used:
package_overlays:
- name: contour
secrets:
- name: contour-loadbalancer-nsg
- Even when configuring `appliveview_connector.backend.caCertData` in the run cluster with the TLS secret (`tanzu-system-ingress/tap-default-tls`), the backend connection still fails with a 503.
As for checking, you could do the following:
kubectl get httpproxy -A
spec.routes[].services[]. Based on app-live-view HTTPProxy output via the below command, it would be like application-live-view-7000.appliveview.svc.cluster.local:7000
kubectl get httpproxy -A -oyaml > httpproxy.yaml
netshoot for this purpose:
kubectl -n appliveview run tmp-shell --rm -i --tty --image nicolaka/netshoot
curl application-live-view-7000.appliveview.svc.cluster.local:7000 and see what happens.