blob: af3150d61ea6644129e9c6e03173d458ee0c2d9c [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 Polreich42682bb2018-11-20 15:09:37 +010049 image: <%=ENV['PLATFORM'] || 'docker-dev-local.docker.mirantis.net/epcim/salt/saltstack-ubuntu-xenial-salt-stable/salt:2018_11_19'%>
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
Dmitry Teselkin70862022019-04-18 16:43:50 +030074 - name: compute_single_ssl
75 driver:
76 devices:
77 - /dev/mem
78 cap_add:
79 - SYS_RAWIO
80 provisioner:
81 pillars-from-files:
82 compute_single.sls: tests/pillar/compute_single.sls
83 nova.sls: tests/pillar/compute_single_ssl.sls
84 pillars:
85 release.sls:
86 nova:
87 compute:
88 version: <%= ENV['OS_VERSION'] || 'ocata' %>
Vasyl Saienko29656ce2018-03-03 05:27:59 +020089
Petr Michalec5f41e6e2017-04-10 10:18:12 +020090# vim: ft=yaml sw=2 ts=2 sts=2 tw=125