Skip to content

Instantly share code, notes, and snippets.

@denzhel
Created May 6, 2021 05:56
Show Gist options
  • Select an option

  • Save denzhel/f264da44fd67e62d09078e24317ab020 to your computer and use it in GitHub Desktop.

Select an option

Save denzhel/f264da44fd67e62d09078e24317ab020 to your computer and use it in GitHub Desktop.
Use Kibana in your Kubernetes Cluster

To launch a temporary Kibana pod you can use the following:

k run -i --tty --rm --image=kibana:6.8.15 --env="ELASTICSEARCH_URL=http://<ServiceNameOfElasticSearchPod>:9200" --port=5601 kibana
k port-forward pod/kibana 5601:5601

Then you can browse Safari/ Chrome/ Firefox and access localhost:5601

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment