blob: d4c9f5e451c0565a03edcde5e115a0f6cf29ec21 [file] [log] [blame]
Petr Michalec5f41e6e2017-04-10 10:18:12 +02001---
2driver:
3 name: docker
4 hostname: nova.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 Hryhorovb4e8e252018-01-19 15:59:21 +020011 salt_version: <%=ENV['SALT_VERSION'] || 'latest'%>
Petr Michalec5f41e6e2017-04-10 10:18:12 +020012 require_chef: false
13 log_level: error
14 formula: nova
15 grains:
16 noservices: True
17 dependencies:
18 - name: linux
19 repo: git
20 source: https://github.com/salt-formulas/salt-formula-linux
Dmitry Ukov3562a082017-05-04 00:00:48 +040021 - name: keystone
22 repo: git
23 source: https://github.com/salt-formulas/salt-formula-keystone
Vasyl Saienko29656ce2018-03-03 05:27:59 +020024 - name: apache
25 repo: git
26 source: https://github.com/salt-formulas/salt-formula-apache
Petr Michalec5f41e6e2017-04-10 10:18:12 +020027 state_top:
28 base:
29 "*":
30 - linux.system
31 - nova
32 pillars:
33 top.sls:
34 base:
35 "*":
36 - linux_repo_openstack
37 - nova
Kirill Bespalovd9d59542017-06-30 00:10:33 +030038 - release
Petr Michalec5f41e6e2017-04-10 10:18:12 +020039 pillars-from-files:
Martin Polreicha24138c2017-07-19 13:32:26 +020040 linux_repo_openstack.sls: tests/pillar/repo_mcp_openstack_<%= ENV['OS_VERSION'] || 'ocata' %>.sls
Petr Michalec5f41e6e2017-04-10 10:18:12 +020041
42verifier:
43 name: inspec
44 sudo: true
45
46platforms:
Martin Polreichecbaf4b2018-02-21 13:15:29 +010047 - name: <%=ENV['PLATFORM'] || 'saltstack-ubuntu-xenial-salt-stable' %>
Petr Michalec5f41e6e2017-04-10 10:18:12 +020048 driver_config:
Martin Polreich2a6589d2018-04-25 12:38:41 +020049 image: <%=ENV['PLATFORM'] || 'epcim/salt:saltstack-ubuntu-xenial-salt-stable'%>
Petr Michalec5f41e6e2017-04-10 10:18:12 +020050 platform: ubuntu
51
52suites:
53
Martin Polreich6eab98a2017-07-25 13:54:32 +020054 - name: compute_cluster
Petr Michalec5f41e6e2017-04-10 10:18:12 +020055 provisioner:
56 pillars-from-files:
57 nova.sls: tests/pillar/compute_cluster.sls
Kirill Bespalovd9d59542017-06-30 00:10:33 +030058 pillars:
59 release.sls:
60 nova:
61 compute:
Martin Polreicha24138c2017-07-19 13:32:26 +020062 version: <%= ENV['OS_VERSION'] || 'ocata' %>
Petr Michalec5f41e6e2017-04-10 10:18:12 +020063
Martin Polreich6eab98a2017-07-25 13:54:32 +020064 - name: control_cluster
Petr Michalec5f41e6e2017-04-10 10:18:12 +020065 provisioner:
66 pillars-from-files:
67 nova.sls: tests/pillar/control_cluster.sls
Kirill Bespalovd9d59542017-06-30 00:10:33 +030068 pillars:
69 release.sls:
70 nova:
71 controller:
Martin Polreicha24138c2017-07-19 13:32:26 +020072 version: <%= ENV['OS_VERSION'] || 'ocata' %>
Petr Michalec5f41e6e2017-04-10 10:18:12 +020073
Vasyl Saienko29656ce2018-03-03 05:27:59 +020074
Petr Michalec5f41e6e2017-04-10 10:18:12 +020075# vim: ft=yaml sw=2 ts=2 sts=2 tw=125