blob: c8f40b86e1c31e6c555404e556442bd6916a7be2 [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
Petr Michalec5f41e6e2017-04-10 10:18:12 +020024 state_top:
25 base:
26 "*":
27 - linux.system
28 - nova
29 pillars:
30 top.sls:
31 base:
32 "*":
33 - linux_repo_openstack
34 - nova
Kirill Bespalovd9d59542017-06-30 00:10:33 +030035 - release
Petr Michalec5f41e6e2017-04-10 10:18:12 +020036 pillars-from-files:
Martin Polreicha24138c2017-07-19 13:32:26 +020037 linux_repo_openstack.sls: tests/pillar/repo_mcp_openstack_<%= ENV['OS_VERSION'] || 'ocata' %>.sls
Petr Michalec5f41e6e2017-04-10 10:18:12 +020038
39verifier:
40 name: inspec
41 sudo: true
42
43platforms:
Martin Polreichecbaf4b2018-02-21 13:15:29 +010044 - name: <%=ENV['PLATFORM'] || 'saltstack-ubuntu-xenial-salt-stable' %>
Petr Michalec5f41e6e2017-04-10 10:18:12 +020045 driver_config:
Martin Polreichecbaf4b2018-02-21 13:15:29 +010046 image: <%=ENV['PLATFORM'] || 'epcim/salt-formulas:saltstack-ubuntu-xenial-salt-stable'%>
Petr Michalec5f41e6e2017-04-10 10:18:12 +020047 platform: ubuntu
48
49suites:
50
Martin Polreich6eab98a2017-07-25 13:54:32 +020051 - name: compute_cluster
Petr Michalec5f41e6e2017-04-10 10:18:12 +020052 provisioner:
53 pillars-from-files:
54 nova.sls: tests/pillar/compute_cluster.sls
Kirill Bespalovd9d59542017-06-30 00:10:33 +030055 pillars:
56 release.sls:
57 nova:
58 compute:
Martin Polreicha24138c2017-07-19 13:32:26 +020059 version: <%= ENV['OS_VERSION'] || 'ocata' %>
Petr Michalec5f41e6e2017-04-10 10:18:12 +020060
Martin Polreich6eab98a2017-07-25 13:54:32 +020061 - name: control_cluster
Petr Michalec5f41e6e2017-04-10 10:18:12 +020062 provisioner:
63 pillars-from-files:
64 nova.sls: tests/pillar/control_cluster.sls
Kirill Bespalovd9d59542017-06-30 00:10:33 +030065 pillars:
66 release.sls:
67 nova:
68 controller:
Martin Polreicha24138c2017-07-19 13:32:26 +020069 version: <%= ENV['OS_VERSION'] || 'ocata' %>
Petr Michalec5f41e6e2017-04-10 10:18:12 +020070
71# vim: ft=yaml sw=2 ts=2 sts=2 tw=125