blob: b0ab87c284baeac80ae36a3aaa1f13d3c635ade5 [file] [log] [blame]
Martin Polreich48ae3e12017-04-13 10:53:32 +02001---
2driver:
3 name: docker
4 hostname: docker.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: docker
15 grains:
16 noservices: True
17 state_top:
18 base:
19 "*":
20 - linux
21 - docker
22 pillars:
23 top.sls:
24 base:
25 "*":
26 - docker_debian_repo
27 - docker
28 docker.sls:
29 docker:
30 client:
31 compose:
32 source:
33 engine: pip
34 pillars-from-files:
Ivan Berezovskiy88d44022019-01-23 19:54:24 +040035 docker_debian_repo.sls: tests/repo_docker.sls
Martin Polreich48ae3e12017-04-13 10:53:32 +020036 dependencies:
37 - name: linux
38 repo: git
Martin Polreich1cf891b2018-12-13 15:19:29 +010039 source: https://gerrit.mcp.mirantis.com/salt-formulas/linux.git
Martin Polreich48ae3e12017-04-13 10:53:32 +020040
41verifier:
42 name: inspec
43 sudo: true
44
Martin Polreich1cf891b2018-12-13 15:19:29 +010045docker_images:
46 - &xenial-20163 <%=ENV['IMAGE_XENIAL_20163'] || 'docker-dev-local.docker.mirantis.net/epcim/salt/saltstack-ubuntu-xenial-salt-2016.3/salt:2018_11_19'%>
47 - &xenial-20177 <%=ENV['IMAGE_XENIAL_20177'] || 'docker-dev-local.docker.mirantis.net/epcim/salt/saltstack-ubuntu-xenial-salt-2017.7/salt:2018_11_19'%>
48 - &xenial-stable <%=ENV['IMAGE_XENIAL_STABLE'] || 'docker-dev-local.docker.mirantis.net/epcim/salt/saltstack-ubuntu-xenial-salt-stable/salt:2018_11_19'%>
49
Martin Polreich48ae3e12017-04-13 10:53:32 +020050platforms:
Martin Polreich1cf891b2018-12-13 15:19:29 +010051 - name: xenial-2016.3
Martin Polreich48ae3e12017-04-13 10:53:32 +020052 driver_config:
Martin Polreich1cf891b2018-12-13 15:19:29 +010053 image: *xenial-20163
54 platform: ubuntu
55
56 - name: xenial-2017.7
57 driver_config:
58 image: *xenial-20177
59 platform: ubuntu
60
61 - name: xenial-stable
62 driver_config:
63 image: *xenial-stable
Martin Polreich48ae3e12017-04-13 10:53:32 +020064 platform: ubuntu
65
66suites:
67
Ivan Berezovskiy1c909de2018-12-21 13:52:09 +040068 - name: client_images
69 provisioner:
70 pillars-from-files:
71 docker.sls: tests/pillar/client_images.sls
72
Martin Polreich48ae3e12017-04-13 10:53:32 +020073 - name: client_compose
74 provisioner:
75 pillars-from-files:
76 docker.sls: tests/pillar/client_compose.sls
77
78 - name: client_container
79 provisioner:
80 pillars-from-files:
81 docker.sls: tests/pillar/client_container.sls
82
Ivan Berezovskiy88d44022019-01-23 19:54:24 +040083 - name: host
Martin Polreich48ae3e12017-04-13 10:53:32 +020084 provisioner:
85 pillars-from-files:
Ivan Berezovskiy88d44022019-01-23 19:54:24 +040086 docker.sls: tests/pillar/host.sls
Martin Polreich48ae3e12017-04-13 10:53:32 +020087# vim: ft=yaml sw=2 ts=2 sts=2 tw=125