[kbn-es] Use basic license as default (#18577)

Signed-off-by: Tyler Smalley <tyler.smalley@elastic.co>
This commit is contained in:
Tyler Smalley 2018-04-25 14:00:24 -07:00 committed by GitHub
parent 706f0f2916
commit 5d8cf56532
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 2 deletions

View file

@ -176,7 +176,7 @@ Start elasticsearch from a nightly snapshot.
yarn es snapshot
```
This will run Elasticsearch with a `trial` license and bootstraped with the user `elastic` and password `changeme`. Additional options are available, pass `--help` for more information.
This will run Elasticsearch with a `basic` license. Additional options are available, pass `--help` for more information.
> You'll need to have a `java` binary in `PATH` or set `JAVA_HOME`.

View file

@ -4,7 +4,7 @@ const kbnEs = require('@kbn/es');
kbnEs
.run({
license: 'trial',
license: 'basic',
password: 'changeme',
version: pkg.version,
'source-path': path.resolve(__dirname, '../../elasticsearch'),

View file

@ -8,6 +8,10 @@ from files licensed under the Apache License 2.0.
By default, Kibana will run with X-Pack installed as mentioned in the [contributing guide](../CONTRIBUTING.md).
Elasticsearch will run with a basic license. To run with a trial license, including security, you can specifying that with the `yarn es` command.
Example: `yarn es snapshot --license trial --password changeme`
# Testing
## Running unit tests_bundle