blob: 77da45fb80b4e170fa8d87c5182ea73c73555499 [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 Polreichb0c13fc2019-04-10 08:21:44 +020031 branch: <%=ENV['GERRIT_BRANCH'] || 'master' %>
Martin Polreich848c00b2017-04-13 13:54:47 +020032
33verifier:
34 name: inspec
35 sudo: true
36
Martin Polreicheff789e2018-12-13 15:41:57 +010037docker_images:
Martin Polreicheff789e2018-12-13 15:41:57 +010038 - &xenial-20177 <%=ENV['IMAGE_XENIAL_20177'] || 'docker-dev-local.docker.mirantis.net/epcim/salt/saltstack-ubuntu-xenial-salt-2017.7/salt:2018_11_19'%>
39 - &xenial-stable <%=ENV['IMAGE_XENIAL_STABLE'] || 'docker-dev-local.docker.mirantis.net/epcim/salt/saltstack-ubuntu-xenial-salt-stable/salt:2018_11_19'%>
40
Martin Polreich848c00b2017-04-13 13:54:47 +020041platforms:
Martin Polreicheff789e2018-12-13 15:41:57 +010042 - name: xenial-2017.7
43 driver_config:
44 image: *xenial-20177
45 platform: ubuntu
46
47 - name: xenial-stable
48 driver_config:
49 image: *xenial-stable
Martin Polreich848c00b2017-04-13 13:54:47 +020050 platform: ubuntu
51
52suites:
53
54 - name: cluster
55 provisioner:
56 pillars-from-files:
57 etcd.sls: tests/pillar/cluster.sls
58
59 - name: proxy
60 provisioner:
61 pillars-from-files:
62 etcd.sls: tests/pillar/proxy.sls
63
64 - name: single
65 provisioner:
66 pillars-from-files:
67 etcd.sls: tests/pillar/single.sls
68# vim: ft=yaml sw=2 ts=2 sts=2 tw=125