Open christiancloudical opened 5 years ago
kibana.yaml -
apiVersion: v1
kind: Service
metadata:
name: kibana
namespace: kube-logging
labels:
app: kibana
spec:
ports:
- port: 5601
name: "http"
selector:
app: kibana
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: kibana
namespace: kube-logging
labels:
app: kibana
spec:
replicas: 1
selector:
matchLabels:
app: kibana
template:
metadata:
labels:
app: kibana
spec:
containers:
- name: kibana
image: docker.elastic.co/kibana/kibana-oss:6.5.4
resources:
limits:
cpu: 1000m
requests:
cpu: 100m
env:
- name: ELASTICSEARCH_URL
value: http://elasticsearch:9200
ports:
- containerPort: 5601
ingress.yaml -
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
namespace: kube-logging
name: kibana
annotations:
kubernetes.io/ingress.class: "nginx"
nginx.ingress.kubernetes.io/rewrite-target: /
kubernetes.io/ingress.global-static-ip-name: <ext-ip>
spec:
backend:
serviceName: kibana
servicePort: 5601
Pinging @elastic/kibana-operations
Maybe - as info - I get following error at UI
KFetchError@http://
Are you creating the index patterns from the UI? Is there anything in the Elasticsearch logs when attempting to create the index pattern?
Yes I am creating the index pattern via UI, I hadn't founbd any information in elastic-logs but unforunatly... after running some days now... problem is solved by itself oO
Kibana version: image: docker.elastic.co/kibana/kibana-oss:6.5.4 Elasticsearch version: docker.elastic.co/elasticsearch/elasticsearch-oss:6.5.4 Server OS version: CentOS-7 Browser version: Firefox / Chromium Original install method (e.g. download page, yum, from source, etc.): Kubectl Describe the bug:
We created a Kubernetes-Cluster with 6 Worker-Nodes. Kibana is running as single pod on one Host ES is running as three-node-cluster on three nodes Logshipper is fluentd Version: fluent/fluentd-kubernetes-daemonset:v1.3-debian-elasticsearch
When I access Kibana via external LoadBalancer or Ingress-Controller ( Endpoint is any Host in Cluster, access is managed by Kubernetes ) I am able to work with Kibana ( searching a.s.o.) but I can not create new index patterns unless the correct host is recieved via round-robbin-loadbalancer.
If I only add that special host to LoadBalancer, index patterns are created instantly.
I access Kibana from another Port, 5601 is just running internal in the container
It seems, that index pattern is created, but is not getting the "fields" section :
If I can provide you any more logs, let me know,
Thanks so far :D