From 54e9c98d74fd9bc5e1ce92d5ec4be56443e1850d Mon Sep 17 00:00:00 2001 From: Nicolas Ruflin Date: Wed, 1 Apr 2020 10:43:35 +0200 Subject: [PATCH] Update docs on how to run ingest manager (#62112) This adds the --no-base-path flag and also enables endpoint. I think we should get used to always running endpoint too. This also adds the bootstrap step as if this is missing, things often break. --- x-pack/plugins/ingest_manager/README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/x-pack/plugins/ingest_manager/README.md b/x-pack/plugins/ingest_manager/README.md index 241138880780f..07acdf8affd49 100644 --- a/x-pack/plugins/ingest_manager/README.md +++ b/x-pack/plugins/ingest_manager/README.md @@ -15,13 +15,17 @@ See the Kibana docs for [how to set up your dev environment](https://github.com/ One common development workflow is: + - Bootstrap Kibana + ``` + yarn kbn bootstrap + ``` - Start Elasticsearch in one shell ``` yarn es snapshot -E xpack.security.authc.api_key.enabled=true ``` - Start Kibana in another shell ``` - yarn start --xpack.ingestManager.enabled=true --xpack.ingestManager.epm.enabled=true --xpack.ingestManager.fleet.enabled=true + yarn start --xpack.ingestManager.enabled=true --xpack.ingestManager.epm.enabled=true --xpack.ingestManager.fleet.enabled=true --no-base-path --xpack.endpoint.enabled=true ``` This plugin follows the `common`, `server`, `public` structure from the [Architecture Style Guide