netdata installation on kubernetes (AKS)

After installing Netdata on Kubernetes (AKS), I can verify it is running by proxying its service. The dashboard is available at:
http://localhost:8080/api/v1/namespaces/default/services/netdata:19999/proxy

The thing is, I cannot make it available at HTTP://Cluster-Public-IP/netdata

I am using the Netdata service in ClusterIP configuration behind ingress. I already have an ingress nginx running. I suppose both ingress servers can co-exist with different names and paths, “/” and “/netdata”.
Right now I get the error: We couldn’t load the latest Netdata UI.

Please advise on the required configuration. (Ingress)

Thank you

With the following config:

ingress:
  enabled: true
  annotations:
    nginx.ingress.kubernetes.io/rewrite-target: / 
  path: /
  pathType: Prefix
  hosts:
    - test1k8gr.centralindia.cloudapp.azure.com
  spec:
    ingressClassName: nginx
    rules:
    - host: test1k8gr.centralindia.cloudapp.azure.com
    - http:
        paths:
        - path: /
          pathType: Prefix
          backend:
            service:
              name: netdata
              port:
                number: 19999

works under “http://test1k8gr.centralindia.cloudapp.azure.com/
didn’t find a way to make it work under “http://test1k8gr.centralindia.cloudapp.azure.com/ netdata”