Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 847 Bytes

README.md

File metadata and controls

31 lines (21 loc) · 847 Bytes

ElasticSurgery

ElasticSurgery is an Elastcsearch cluster management interface. Designed to view and operate cluster level stuff.

Development

Setup your environment like so - you'll need kubetools-client installed:

# Install the node modules
npm install --prefix frontend/

# Start the webserver + development Elasticsearch instance
ktd up

And then to start the webpack server and follow the server logs:

honcho start

Pointing at another cluster

To look at another cluster in development, first make a copy of fixtures/dev_cluster_config.json and add it to the development Elasticsearch instance like so:

curl -X PUT http://dev.edtd.net:26950/.elasticsurgery-clusters/_doc/<SLUG> \
    -H 'Content-Type: application/json' \
    -d@my_json_config.json