kibana/tasks/config/esvm.js
Court Ewing 829985d96a
Remove tribe node support (#16397)
* Remove tribe node support

Tribe node is being removed from Elasticsearch since it has been
superseded by Cross-Cluster-Search.

* console: remove unnecessary isEnabled

The default behavior for the plugin is to be disabled when its `enabled`
configuration is set to false, so this custom isEnabled function is not
necessary any longer.
2018-01-30 14:36:38 -05:00

58 lines
1.1 KiB
JavaScript

import { esTestConfig } from '../../src/test_utils/es';
module.exports = function (grunt) {
const branch = esTestConfig.getBranch();
const dataDir = esTestConfig.getDirectoryForEsvm('data_dir');
return {
options: {
branch,
fresh: !grunt.option('esvm-no-fresh'),
config: {
http: {
port: 9200
},
}
},
dev: {
options: {
directory: esTestConfig.getDirectoryForEsvm('dev'),
config: {
path: {
data: dataDir
},
cluster: {
name: 'esvm-dev'
}
}
}
},
ui: {
options: {
directory: esTestConfig.getDirectoryForEsvm('test'),
purge: true,
config: {
http: {
port: esTestConfig.getPort()
},
cluster: {
name: 'esvm-ui'
},
discovery: {
zen: {
ping: {
unicast: {
hosts: [ `localhost:${esTestConfig.getPort()}` ]
}
}
}
}
}
}
},
};
};