Ingress for Kibana- the browser did not recognize the hostname

Hi,
If possible-
I have a question:
this it my elasticsearch:

apiVersion: elasticsearch.k8s.elastic.co/v1
kind: Elasticsearch
metadata:
  name: cdbridgerpayelasticsearch
spec:
  version: 7.6.2
  nodeSets:
  - name: default
    count: 1
    config:
      node.master: true
      node.data: true
      node.ingest: true
      node.store.allow_mmap: false

this is my kibana:

apiVersion: kibana.k8s.elastic.co/v1
kind: Kibana
metadata:
  name: quickstart
spec:
  version: 7.6.2
  count: 1
  elasticsearchRef:
    name: cdbridgerpayelasticsearch
  http:
    service:
        spec:
            type: LoadBalancer

the kibana ran well (the LB too)

and this is my Ingress:

apiVersion: extensions/v1beta1
kind: Ingress
metadata:
  annotations:
    kubernetes.io/ingress.class: "nginx"
    nginx.ingress.kubernetes.io/backend-protocol: HTTPS
    cert-manager.io/cluster-issuer: "letsencrypt-http"
  name: bcd-ingress-kibana-bcd
spec:
  rules:
  - host: kibana.some.net
    http:
      paths:
      - backend:
          serviceName: quickstart
          servicePort: 5601
        path: /
  tls:
  - hosts:
    - kibana.some.net
    

when I ran: kubectl get ingress
I got:

$ kubectl get ingress
W0614 15:48:48.425600 1675 gcp.go:120] WARNING: the gcp auth plugin is deprecated in v1.22+, unavailable in v1.25+; use gcloud instead.
To learn more, consult https://cloud.google.com/blog/products/containers-kubernetes/kubectl-auth-changes-in-gke
NAME CLASS HOSTS ADDRESS PORTS AGE
kibana-ingress-bcd kibana.some.net 80 5m24s

and when I tried browsing with this host-
the browsre didnt recognize this hostname.

If anyone knows what the problem is - it will help me a lotץ
thanks
Frida