blob: a599adf6e29ec5a978a5c242e47aebe88246cfd6 [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:
Martin Polreicheff789e2018-12-13 15:41:57 +010040 - &xenial-20177 <%=ENV['IMAGE_XENIAL_20177'] || 'docker-dev-local.docker.mirantis.net/epcim/salt/saltstack-ubuntu-xenial-salt-2017.7/salt:2018_11_19'%>
41 - &xenial-stable <%=ENV['IMAGE_XENIAL_STABLE'] || 'docker-dev-local.docker.mirantis.net/epcim/salt/saltstack-ubuntu-xenial-salt-stable/salt:2018_11_19'%>
42
Martin Polreich848c00b2017-04-13 13:54:47 +020043platforms:
Martin Polreicheff789e2018-12-13 15:41:57 +010044 - name: xenial-2017.7
45 driver_config:
46 image: *xenial-20177
47 platform: ubuntu
48
49 - name: xenial-stable
50 driver_config:
51 image: *xenial-stable
Martin Polreich848c00b2017-04-13 13:54:47 +020052 platform: ubuntu
53
54suites:
55
56 - name: cluster
57 provisioner:
58 pillars-from-files:
59 etcd.sls: tests/pillar/cluster.sls
60
61 - name: proxy
62 provisioner:
63 pillars-from-files:
64 etcd.sls: tests/pillar/proxy.sls
65
66 - name: single
67 provisioner:
68 pillars-from-files:
69 etcd.sls: tests/pillar/single.sls
70# vim: ft=yaml sw=2 ts=2 sts=2 tw=125