blob: 11bdbd8e502888e4961935159ba43ad74a62658d [file] [log] [blame]
Martin Polreich848c00b2017-04-13 13:54:47 +02001---
2driver:
3 name: docker
4 hostname: etcd.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: etcd
15 grains:
16 noservices: True
17 state_top:
18 base:
19 "*":
20 - linux
21 - etcd
22 pillars:
23 top.sls:
24 base:
25 "*":
Martin Polreich848c00b2017-04-13 13:54:47 +020026 - etcd
27 dependencies:
28 - name: linux
29 repo: git
Martin Polreicheff789e2018-12-13 15:41:57 +010030 source: https://gerrit.mcp.mirantis.com/salt-formulas/linux.git
Martin Polreich848c00b2017-04-13 13:54:47 +020031
32verifier:
33 name: inspec
34 sudo: true
35
Martin Polreicheff789e2018-12-13 15:41:57 +010036docker_images:
Martin Polreicheff789e2018-12-13 15:41:57 +010037 - &xenial-20177 <%=ENV['IMAGE_XENIAL_20177'] || 'docker-dev-local.docker.mirantis.net/epcim/salt/saltstack-ubuntu-xenial-salt-2017.7/salt:2018_11_19'%>
38 - &xenial-stable <%=ENV['IMAGE_XENIAL_STABLE'] || 'docker-dev-local.docker.mirantis.net/epcim/salt/saltstack-ubuntu-xenial-salt-stable/salt:2018_11_19'%>
39
Martin Polreich848c00b2017-04-13 13:54:47 +020040platforms:
Martin Polreicheff789e2018-12-13 15:41:57 +010041 - name: xenial-2017.7
42 driver_config:
43 image: *xenial-20177
44 platform: ubuntu
45
46 - name: xenial-stable
47 driver_config:
48 image: *xenial-stable
Martin Polreich848c00b2017-04-13 13:54:47 +020049 platform: ubuntu
50
51suites:
52
53 - name: cluster
54 provisioner:
55 pillars-from-files:
56 etcd.sls: tests/pillar/cluster.sls
57
58 - name: proxy
59 provisioner:
60 pillars-from-files:
61 etcd.sls: tests/pillar/proxy.sls
62
63 - name: single
64 provisioner:
65 pillars-from-files:
66 etcd.sls: tests/pillar/single.sls
67# vim: ft=yaml sw=2 ts=2 sts=2 tw=125