Building a Kibana distributable

The following commands will build a Kibana production distributable.

  1. yarn build --skip-os-packages

You can get all build options using the following command:

  1. yarn build --help

Building OS packages

Packages are built using fpm, dpkg, and rpm. Package building has only been tested on Linux and is not supported on any other platform.

  1. apt-get install ruby-dev rpm
  2. gem install fpm -v 1.5.0
  3. yarn build --skip-archives

To specify a package to build you can add rpm or deb as an argument.

  1. yarn build --rpm

Distributable packages can be found in target/ after the build completes.

Most Popular