blob: c3e27e92f5bf82f5ce5f64cd02bc84d155c100ca [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
Petr Michalecd4bb8742017-05-15 18:11:16 +020035 nova:
36 controller:
37 version: <%= ENV['OS_VERSION'] || 'mitaka' %>
38 compute:
39 version: <%= ENV['OS_VERSION'] || 'mitaka' %>
Petr Michalec5f41e6e2017-04-10 10:18:12 +020040 pillars-from-files:
Petr Michalecd4bb8742017-05-15 18:11:16 +020041 linux_repo_openstack.sls: tests/pillar/repo_mcp_openstack_<%= ENV['OS_VERSION'] || 'mitaka' %>.sls
Petr Michalec5f41e6e2017-04-10 10:18:12 +020042
43verifier:
44 name: inspec
45 sudo: true
46
47platforms:
48 - name: <%= ENV['PLATFORM'] || 'ubuntu-xenial' %>
49 driver_config:
50 image: <%= ENV['PLATFORM'] || 'trevorj/salty-whales:xenial' %>
51 platform: ubuntu
52
53suites:
54
55 - name: compute_cluster
56 provisioner:
57 pillars-from-files:
58 nova.sls: tests/pillar/compute_cluster.sls
59
60 - name: control_cluster
61 provisioner:
62 pillars-from-files:
63 nova.sls: tests/pillar/control_cluster.sls
64
65# vim: ft=yaml sw=2 ts=2 sts=2 tw=125