blob: a7929c6cc8b15ef5ea526eee7377540bcd13a835 [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:
Martin Polreich1cf891b2018-12-13 15:19:29 +010046 - &xenial-20177 <%=ENV['IMAGE_XENIAL_20177'] || 'docker-dev-local.docker.mirantis.net/epcim/salt/saltstack-ubuntu-xenial-salt-2017.7/salt:2018_11_19'%>
47 - &xenial-stable <%=ENV['IMAGE_XENIAL_STABLE'] || 'docker-dev-local.docker.mirantis.net/epcim/salt/saltstack-ubuntu-xenial-salt-stable/salt:2018_11_19'%>
48
Martin Polreich48ae3e12017-04-13 10:53:32 +020049platforms:
Martin Polreich1cf891b2018-12-13 15:19:29 +010050 - 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 Polreich48ae3e12017-04-13 10:53:32 +020058 platform: ubuntu
59
60suites:
61
Ivan Berezovskiy1c909de2018-12-21 13:52:09 +040062 - name: client_images
63 provisioner:
64 pillars-from-files:
65 docker.sls: tests/pillar/client_images.sls
66
Martin Polreich48ae3e12017-04-13 10:53:32 +020067 - name: client_compose
68 provisioner:
69 pillars-from-files:
70 docker.sls: tests/pillar/client_compose.sls
71
72 - name: client_container
73 provisioner:
74 pillars-from-files:
75 docker.sls: tests/pillar/client_container.sls
76
Ivan Berezovskiy88d44022019-01-23 19:54:24 +040077 - name: host
Martin Polreich48ae3e12017-04-13 10:53:32 +020078 provisioner:
79 pillars-from-files:
Ivan Berezovskiy88d44022019-01-23 19:54:24 +040080 docker.sls: tests/pillar/host.sls
Martin Polreich48ae3e12017-04-13 10:53:32 +020081# vim: ft=yaml sw=2 ts=2 sts=2 tw=125