blob: 20c7df10c5edb6b0c1a2ae699497f5ed605db3b5 [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-2017.7
52 driver_config:
53 image: *xenial-20177
54 platform: ubuntu
55
56 - name: xenial-stable
57 driver_config:
58 image: *xenial-stable
Martin Polreich48ae3e12017-04-13 10:53:32 +020059 platform: ubuntu
60
61suites:
62
Ivan Berezovskiy1c909de2018-12-21 13:52:09 +040063 - name: client_images
64 provisioner:
65 pillars-from-files:
66 docker.sls: tests/pillar/client_images.sls
67
Martin Polreich48ae3e12017-04-13 10:53:32 +020068 - name: client_compose
69 provisioner:
70 pillars-from-files:
71 docker.sls: tests/pillar/client_compose.sls
72
73 - name: client_container
74 provisioner:
75 pillars-from-files:
76 docker.sls: tests/pillar/client_container.sls
77
Ivan Berezovskiy88d44022019-01-23 19:54:24 +040078 - name: host
Martin Polreich48ae3e12017-04-13 10:53:32 +020079 provisioner:
80 pillars-from-files:
Ivan Berezovskiy88d44022019-01-23 19:54:24 +040081 docker.sls: tests/pillar/host.sls
Martin Polreich48ae3e12017-04-13 10:53:32 +020082# vim: ft=yaml sw=2 ts=2 sts=2 tw=125