blob: 95a13d804452f7840983f919b2aca7fb770546db [file] [log] [blame]
Petr Michalecfc1801e2017-03-10 10:30:26 +01001---
2driver:
3 name: docker
4 hostname: heat.ci.local
5 use_sudo: false
6
7provisioner:
8 name: salt_solo
9 salt_install: bootstrap
10 salt_bootstrap_url: https://bootstrap.saltstack.com
Oleh Hryhorovabb63ba2018-01-22 12:04:18 +020011 salt_version: <%=ENV['SALT_VERSION'] || 'latest'%>
Petr Michalecfc1801e2017-03-10 10:30:26 +010012 require_chef: false
13 log_level: error
14 formula: heat
15 grains:
16 noservices: True
Dmitry Ukovf3f33a82017-05-05 11:56:46 +040017 dependencies:
18 - name: keystone
19 repo: git
20 source: https://github.com/salt-formulas/salt-formula-keystone
Martin Polreichb24076f2018-08-27 10:42:45 +020021 - name: oslo_templates
22 repo: git
23 source: https://github.com/salt-formulas/salt-formula-oslo-templates
Petr Michalecfc1801e2017-03-10 10:30:26 +010024 state_top:
25 base:
26 "*":
27 - heat
28 pillars:
29 top.sls:
30 base:
31 "*":
32 - heat
33
34verifier:
35 name: inspec
36 sudo: true
37
38
39platforms:
Martin Polreichdab174c2018-02-16 15:14:38 +010040 - name: <%=ENV['PLATFORM'] || 'saltstack-ubuntu-xenial-salt-stable' %>
Petr Michalecfc1801e2017-03-10 10:30:26 +010041 driver_config:
Martin Polreich616d7f12018-04-18 10:43:59 +020042 image: <%=ENV['PLATFORM'] || 'epcim/salt:saltstack-ubuntu-xenial-salt-stable'%>
Petr Michalecfc1801e2017-03-10 10:30:26 +010043 platform: ubuntu
44
45suites:
46
47 - name: server_cluster
48 provisioner:
49 pillars-from-files:
50 heat.sls: tests/pillar/server_cluster.sls
51
52 - name: server_plugin_dirs
53 provisioner:
54 pillars-from-files:
55 heat.sls: tests/pillar/server_plugin_dirs.sls
56
57 - name: server_single
58 provisioner:
59 pillars-from-files:
60 heat.sls: tests/pillar/server_single.sls
61# vim: ft=yaml sw=2 ts=2 sts=2 tw=125