blob: 014215d1f97b0efd288aec5eddb11d6f9ebc6e80 [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 "*":
26 - debian_etcd_repo
27 - etcd
28 dependencies:
29 - name: linux
30 repo: git
Martin Polreicheff789e2018-12-13 15:41:57 +010031 source: https://gerrit.mcp.mirantis.com/salt-formulas/linux.git
Martin Polreich848c00b2017-04-13 13:54:47 +020032 pillars-from-files:
33 debian_etcd_repo.sls: tests/pillar/repo_etcd.sls
34
35verifier:
36 name: inspec
37 sudo: true
38
Martin Polreicheff789e2018-12-13 15:41:57 +010039docker_images:
40 - &xenial-20163 <%=ENV['IMAGE_XENIAL_20163'] || 'docker-dev-local.docker.mirantis.net/epcim/salt/saltstack-ubuntu-xenial-salt-2016.3/salt:2018_11_19'%>
41 - &xenial-20177 <%=ENV['IMAGE_XENIAL_20177'] || 'docker-dev-local.docker.mirantis.net/epcim/salt/saltstack-ubuntu-xenial-salt-2017.7/salt:2018_11_19'%>
42 - &xenial-stable <%=ENV['IMAGE_XENIAL_STABLE'] || 'docker-dev-local.docker.mirantis.net/epcim/salt/saltstack-ubuntu-xenial-salt-stable/salt:2018_11_19'%>
43
Martin Polreich848c00b2017-04-13 13:54:47 +020044platforms:
Martin Polreicheff789e2018-12-13 15:41:57 +010045 - name: xenial-2016.3
Martin Polreich848c00b2017-04-13 13:54:47 +020046 driver_config:
Martin Polreicheff789e2018-12-13 15:41:57 +010047 image: *xenial-20163
48 platform: ubuntu
49
50 - name: xenial-2017.7
51 driver_config:
52 image: *xenial-20177
53 platform: ubuntu
54
55 - name: xenial-stable
56 driver_config:
57 image: *xenial-stable
Martin Polreich848c00b2017-04-13 13:54:47 +020058 platform: ubuntu
59
60suites:
61
62 - name: cluster
63 provisioner:
64 pillars-from-files:
65 etcd.sls: tests/pillar/cluster.sls
66
67 - name: proxy
68 provisioner:
69 pillars-from-files:
70 etcd.sls: tests/pillar/proxy.sls
71
72 - name: single
73 provisioner:
74 pillars-from-files:
75 etcd.sls: tests/pillar/single.sls
76# vim: ft=yaml sw=2 ts=2 sts=2 tw=125