blob: 396dd2728e3129449065f56b67a3d7c5b016e8cd [file] [log] [blame]
Martin Polreich0c7f5672017-04-11 13:27:30 +02001---
2driver:
3 name: docker
4 hostname: elasticsearch.ci.local
5 use_sudo: false
6
7provisioner:
8 name: salt_solo
9 salt_install: bootstrap
10 salt_bootstrap_url: https://bootstrap.saltstack.com
11 salt_version: latest
12 require_chef: false
13 log_level: error
14 formula: elasticsearch
15 grains:
16 noservices: True
17 state_top:
18 base:
19 "*":
20 - linux
21 - elasticsearch
22 pillars:
23 top.sls:
24 base:
25 "*":
26 - elasticsearch
27 - elasticsearch_debian_repo
28 pillars-from-files:
29 elasticsearch_debian_repo.sls: tests/pillar/repo_elasticsearch.sls
30 dependencies:
31 - name: linux
32 repo: git
33 source: https://github.com/salt-formulas/salt-formula-linux.git
34
35verifier:
36 name: inspec
37 sudo: true
38
39platforms:
Martin Polreichbbf9afa2018-02-16 14:54:21 +010040 - name: <%=ENV['PLATFORM'] || 'saltstack-ubuntu-xenial-salt-stable' %>
Martin Polreich0c7f5672017-04-11 13:27:30 +020041 driver_config:
Martin Polreich2f740072018-11-20 15:07:42 +010042 image: <%=ENV['PLATFORM'] || 'docker-dev-local.docker.mirantis.net/epcim/salt/saltstack-ubuntu-xenial-salt-stable/salt:2018_11_19'%>
Martin Polreich0c7f5672017-04-11 13:27:30 +020043 platform: ubuntu
44
45suites:
Martin Polreich970ced82017-07-17 11:06:45 +020046 - name: single
Martin Polreich0c7f5672017-04-11 13:27:30 +020047 provisioner:
48 pillars-from-files:
Martin Polreich970ced82017-07-17 11:06:45 +020049 elasticsearch.sls: tests/pillar/single.sls
50
51 - name: cluster
52 provisioner:
53 pillars-from-files:
54 elasticsearch.sls: tests/pillar/cluster.sls
55
56 - name: curator
57 provisioner:
58 pillars-from-files:
59 elasticsearch.sls: tests/pillar/curator.sls
60
61 - name: client
62 provisioner:
63 pillars-from-files:
64 elasticsearch.sls: tests/pillar/client.sls
65
Martin Polreich0c7f5672017-04-11 13:27:30 +020066# vim: ft=yaml sw=2 ts=2 sts=2 tw=125