Kibana kubernetes not working

Hello every one,
i have all reday created the kubernetes elasticsearch and i want to add the kibana

i'm using this two files :

apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: kibana-logging
namespace: kube-system
labels:
k8s-app: kibana-logging
spec:
replicas: 1
selector:
matchLabels:
k8s-app: kibana-logging
template:
metadata:
labels:
k8s-app: kibana-logging
spec:
containers:
- name: kibana-logging
image: emacski/k8s-kibana:latest-proxy
resources:
# keep request = limit to keep this container in guaranteed class
limits:
cpu: 100m
requests:
cpu: 100m
env:
- name: "kibana_elasticsearch_url"
value: "localhost:9200"
# when using a "-proxy" image, the following is not required
- name: "kibana_base_url"
value: "/api/v1/proxy/namespaces/kube-system/services/kibana-logging"
ports:
- containerPort: 5601
name: ui
protocol: TCP


apiVersion: v1
kind: Service
metadata:
name: kibana-logging
namespace: kube-system
labels:
kubernetes.io/name: "Kibana_Logging"
kubernetes.io/cluster-service: "true"
k8s-app: kibana-logging
spec:
ports:

  • port: 5601
    protocol: TCP
    targetPort: ui
    selector:
    k8s-app: kibana-logging

By putting my ip_@:5601 i got nothing and i don't know why ?

Any one can help me to know the reason ?

Hey @marxper, since this is a Kubernetes specific question, your best bet is to ask this question in a Kubernetes specific forum or open an issue on the GitHub repo that you're modeling your Kubernetes deployment off of: https://github.com/emacski/k8s-kibana

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.