blob: 6d7a1b28366ceaed0dc0531fc921e32645652023 [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
32#TODO: use rabbitmq when https://mirantis.jira.com/browse/PROD-11712 is fixed
33# - rabbitmq
34 - designate
35 pillars:
36 top.sls:
37 base:
38 "*":
39 - linux_repo_openstack
40 - designate
41 pillars-from-files:
42 linux_repo_openstack.sls: tests/pillar/repo_mcp_openstack.sls
43
44verifier:
45 name: inspec
46 sudo: true
47
48platforms:
49 - name: <%= ENV['PLATFORM'] || 'ubuntu-xenial' %>
50 driver_config:
51 image: <%= ENV['PLATFORM'] || 'trevorj/salty-whales:xenial' %>
52 platform: ubuntu
53
54suites:
55
56 - name: designate_without_backend
57 provisioner:
58 pillars-from-files:
59 designate.sls: tests/pillar/designate_ocata.sls
60
Oleh Hryhorov799c6932018-01-19 18:43:41 +020061# vim: ft=yaml sw=2 ts=2 sts=2 tw=125