blob: bbb6694241542094a8790ad0d45306893f821051 [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
Oleksandr Bryndziicfead4b2019-05-20 18:53:04 +030020 source: https://gerrit.mcp.mirantis.com/salt-formulas/linux
Dmitry Ukov3562a082017-05-04 00:00:48 +040021 - name: keystone
22 repo: git
Oleksandr Bryndziicfead4b2019-05-20 18:53:04 +030023 source: https://gerrit.mcp.mirantis.com/salt-formulas/keystone
Vasyl Saienko29656ce2018-03-03 05:27:59 +020024 - name: apache
25 repo: git
Oleksandr Bryndziicfead4b2019-05-20 18:53:04 +030026 source: https://gerrit.mcp.mirantis.com/salt-formulas/apache
27 - name: oslo_templates
28 repo: git
29 source: https://gerrit.mcp.mirantis.com/salt-formulas/oslo-templates
Petr Michalec5f41e6e2017-04-10 10:18:12 +020030 state_top:
31 base:
32 "*":
33 - linux.system
34 - nova
35 pillars:
36 top.sls:
37 base:
38 "*":
39 - linux_repo_openstack
40 - nova
Kirill Bespalovd9d59542017-06-30 00:10:33 +030041 - release
Petr Michalec5f41e6e2017-04-10 10:18:12 +020042 pillars-from-files:
Martin Polreicha24138c2017-07-19 13:32:26 +020043 linux_repo_openstack.sls: tests/pillar/repo_mcp_openstack_<%= ENV['OS_VERSION'] || 'ocata' %>.sls
Petr Michalec5f41e6e2017-04-10 10:18:12 +020044
45verifier:
46 name: inspec
47 sudo: true
48
49platforms:
Martin Polreichecbaf4b2018-02-21 13:15:29 +010050 - name: <%=ENV['PLATFORM'] || 'saltstack-ubuntu-xenial-salt-stable' %>
Petr Michalec5f41e6e2017-04-10 10:18:12 +020051 driver_config:
Martin Polreich42682bb2018-11-20 15:09:37 +010052 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 +020053 platform: ubuntu
54
55suites:
56
Martin Polreich6eab98a2017-07-25 13:54:32 +020057 - name: compute_cluster
Petr Michalec5f41e6e2017-04-10 10:18:12 +020058 provisioner:
59 pillars-from-files:
60 nova.sls: tests/pillar/compute_cluster.sls
Kirill Bespalovd9d59542017-06-30 00:10:33 +030061 pillars:
62 release.sls:
63 nova:
64 compute:
Martin Polreicha24138c2017-07-19 13:32:26 +020065 version: <%= ENV['OS_VERSION'] || 'ocata' %>
Petr Michalec5f41e6e2017-04-10 10:18:12 +020066
Martin Polreich6eab98a2017-07-25 13:54:32 +020067 - name: control_cluster
Petr Michalec5f41e6e2017-04-10 10:18:12 +020068 provisioner:
69 pillars-from-files:
70 nova.sls: tests/pillar/control_cluster.sls
Kirill Bespalovd9d59542017-06-30 00:10:33 +030071 pillars:
72 release.sls:
73 nova:
74 controller:
Martin Polreicha24138c2017-07-19 13:32:26 +020075 version: <%= ENV['OS_VERSION'] || 'ocata' %>
Petr Michalec5f41e6e2017-04-10 10:18:12 +020076
Dmitry Teselkin70862022019-04-18 16:43:50 +030077 - name: compute_single_ssl
78 driver:
79 devices:
80 - /dev/mem
81 cap_add:
82 - SYS_RAWIO
83 provisioner:
84 pillars-from-files:
85 compute_single.sls: tests/pillar/compute_single.sls
86 nova.sls: tests/pillar/compute_single_ssl.sls
87 pillars:
88 release.sls:
89 nova:
90 compute:
91 version: <%= ENV['OS_VERSION'] || 'ocata' %>
Vasyl Saienko29656ce2018-03-03 05:27:59 +020092
Petr Michalec5f41e6e2017-04-10 10:18:12 +020093# vim: ft=yaml sw=2 ts=2 sts=2 tw=125