blob: 500aef2b25c1725525538be9122c22e93f63d96b [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
11 salt_version: latest
12 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:
44 - name: <%= ENV['PLATFORM'] || 'ubuntu-xenial' %>
45 driver_config:
46 image: <%= ENV['PLATFORM'] || 'trevorj/salty-whales:xenial' %>
47 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