hello,
i have an Elastick stack elasticsearch and kibana 7.10.0 using elk operator in kubernetes
Whene i make the link https://monitoring.cloudapp.azure.com/kibana i have this redirection :
in the pod logs :
"type":"response","@timestamp":"2020-12-23T15:38:27Z","tags":,"pid":7,"method":"get","statusCode":302,"req":{"url":"/kibana/login?next=%2Fkibana%2Fkibana%2Flogin%3Fnext%3D%252Fkibana%252.....
Kibana.yaml
apiVersion: kibana.k8s.elastic.co/v1
kind: Kibana
metadata:
name: kibana
spec:
version: 7.10.0
count: 1
elasticsearchRef:
name: elastic-https
http:
service:
spec:
type: ClusterIP
tls:
selfSignedCertificate:
disabled: true
podTemplate:
spec:
containers:
- name: kibana
env:
- name: SERVER_BASEPATH
value: "/kibana"
resources:
requests:
memory: 4Gi
cpu: 1
limits:
memory: 8Gi
cpu: 2
metadata:
annotations:
sidecar.istio.io/rewriteAppHTTPProbers: "true"
kibana.ingress.yaml
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
annotations:
kubernetes.io/ingress.class: istio
name: kibana-ingress
spec:
rules:
- host: "monitoring.cloudapp.azure.com"
http:
paths:
- path: /kibana/login.*
backend:
serviceName: kibana-kb-http
servicePort: 5601
- path: /kibana
backend:
serviceName: kibana-kb-http
servicePort: 5601
- path: /kibana/*
backend:
serviceName: kibana-kb-http
servicePort: 5601
Any idea please.
thanks