Skip to content
This repository has been archived by the owner on May 23, 2024. It is now read-only.

xtermi2/kibana-searchguard

 
 

Repository files navigation

Kibana Docker Image with preinstalled Search Guard Plugin and ready to run in OpenShift

Build and Release Pipeline Codacy Badge License LICENSE 996.icu

Have a look at xtermi2/elasticsearch-searchguard for a fitting elasticsearch.

Have a look at xtermi2/elasticsearch-searchguard/example/README.md for a complete example in docker-compose with 2 elasticsearch nodes and a kibana.

How to use

This image can be used in the same way as the original elastic kibana image. Have also a look at the searchguard kibana configuration. Here is a example how to run it with an existing elasticsearch:

docker run \
    -p 5601:5601 \
    -e "XPACK_SECURITY_ENABLED=false" \
    -e "ELASTICSEARCH_HOSTS=https://my-elasticsearch:9200" \
    -e "ELASTICSEARCH_USERNAME=kibana" \
    -e "ELASTICSEARCH_PASSWORD=kibana" \
    -e "ELASTICSEARCH_SSL_VERIFICATIONMODE=none" \
    --rm \
    --name kibana-searchguard \
    xtermi2/kibana-searchguard 

NOTE: Since Kibana 7.11 you have to disable x-pack-security plugin, which is now included in Kibana and will clash with Search Guard. Disable it e.g. via

  • kibana.yml: xpack.security.enabled: "false"
  • Environment variable: XPACK_SECURITY_ENABLED=false (see example above)

User Feedback

Issues

If you have any problems with or questions about this image, please ask for help through a GitHub issue.

About

Kibana Docker Image with preinstalled Search Guard Plugin

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Shell 67.7%
  • Dockerfile 32.3%