~mthaddon/mojo/charm-testing-influxdb

« back to all changes in this revision

Viewing changes to charm-testing/elasticsearch/deploy

  • Committer: Tom Haddon
  • Date: 2017-08-21 14:16:58 UTC
  • Revision ID: tom.haddon@canonical.com-20170821141658-1zl73f7r9hchr71h
[mthaddon,trivial] Add basic charm testing spec for Elasticsearch

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
elasticsearch:
 
2
    series: {{series}}
 
3
    services:
 
4
        elasticsearch:
 
5
            charm: elasticsearch
 
6
            num_units: 3
 
7
        nrpe:
 
8
            charm: nrpe
 
9
            {% if series == "xenial" %}options:
 
10
                procs: '-w 200 -c 250'
 
11
                swap: '-w 90% -c 75% -n ok'{% endif %}
 
12
    relations:
 
13
       - ["elasticsearch", "nrpe:nrpe-external-master"]     
 
14