Hi,
We will deploy Kibana on ECK and access Kibana from outside kubernetes cluster, I found Ingress example, Can anyone please help how to mention the selector as Kibana in the service file, Example to mention selector as non-master node is
elasticsearch.k8s.elastic.co/cluster-name: "hulk"
elasticsearch.k8s.elastic.co/node-master: "false"
so that the Ingress request go to that non master node only.
Ingress Configuration
kind: Ingress
metadata:
name: kibana-ingress
spec:
rules:
- http:
paths:
- path: /*
backend:
serviceName: kibana-config-kb-http
servicePort: 5601
Thanks.