blob: d4af7dc41ec02f95d625e38b52e08ee89ec9e88d [file] [log] [blame]
Mykyta Karpin8a692a62017-05-31 11:59:30 +03001---
2driver:
3 name: docker
4 hostname: designate.ci.local
5 use_sudo: true
6
7provisioner:
8 name: salt_solo
9 salt_install: bootstrap
10 salt_bootstrap_url: https://bootstrap.saltstack.com
Oleh Hryhorov799c6932018-01-19 18:43:41 +020011 salt_version: <%=ENV['SALT_VERSION'] || 'latest'%>
Mykyta Karpin8a692a62017-05-31 11:59:30 +030012 require_chef: false
13 log_level: error
14 formula: designate
15 grains:
16 noservices: True
17 dependencies:
18 - name: linux
19 repo: git
20 source: https://github.com/salt-formulas/salt-formula-linux
21 - name: mysql
22 repo: git
23 source: https://github.com/salt-formulas/salt-formula-mysql
24 - name: rabbitmq
25 repo: git
26 source: https://github.com/salt-formulas/salt-formula-rabbitmq
27 state_top:
28 base:
29 "*":
30 - linux
31 - mysql
Martin Polreichfd2411e2018-02-16 14:11:10 +010032 - rabbitmq
Mykyta Karpin8a692a62017-05-31 11:59:30 +030033 - designate
34 pillars:
35 top.sls:
36 base:
37 "*":
38 - linux_repo_openstack
39 - designate
40 pillars-from-files:
41 linux_repo_openstack.sls: tests/pillar/repo_mcp_openstack.sls
42
43verifier:
44 name: inspec
45 sudo: true
46
47platforms:
Martin Polreichfd2411e2018-02-16 14:11:10 +010048 - name: <%=ENV['PLATFORM'] || 'saltstack-ubuntu-xenial-salt-stable' %>
Mykyta Karpin8a692a62017-05-31 11:59:30 +030049 driver_config:
Martin Polreichaf958be2018-04-06 15:09:03 +020050 image: <%=ENV['PLATFORM'] || 'epcim/salt:saltstack-ubuntu-xenial-salt-stable'%>
Mykyta Karpin8a692a62017-05-31 11:59:30 +030051 platform: ubuntu
52
53suites:
54
55 - name: designate_without_backend
56 provisioner:
57 pillars-from-files:
58 designate.sls: tests/pillar/designate_ocata.sls
59
Oleh Hryhorov799c6932018-01-19 18:43:41 +020060# vim: ft=yaml sw=2 ts=2 sts=2 tw=125