Ingress with ALB Ingress Controller

Question

How I can deploy Lenses with Helm using ALB Ingress?

Answer

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

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