How I can deploy Lenses with Helm using ALB Ingress?
You need to set the Ingress helm values. Please notice the host: "/*", because it is required. If you set the host to simple / then the ALB will handle only requests on root / received
host: "/*"
host
/
service: enabled: true type: ClusterIP ingress: enabled: true host: path: "/*" annotations: kubernetes.io/ingress.class: alb alb.ingress.kubernetes.io/scheme: internet-facing alb.ingress.kubernetes.io/target-type: ip
On this page