Mykyta Karpin | 8a692a6 | 2017-05-31 11:59:30 +0300 | [diff] [blame] | 1 | --- |
| 2 | driver: |
| 3 | name: docker |
| 4 | hostname: designate.ci.local |
| 5 | use_sudo: true |
| 6 | |
| 7 | provisioner: |
| 8 | name: salt_solo |
| 9 | salt_install: bootstrap |
| 10 | salt_bootstrap_url: https://bootstrap.saltstack.com |
Oleh Hryhorov | 799c693 | 2018-01-19 18:43:41 +0200 | [diff] [blame] | 11 | salt_version: <%=ENV['SALT_VERSION'] || 'latest'%> |
Mykyta Karpin | 8a692a6 | 2017-05-31 11:59:30 +0300 | [diff] [blame] | 12 | 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 Polreich | fd2411e | 2018-02-16 14:11:10 +0100 | [diff] [blame] | 32 | - rabbitmq |
Mykyta Karpin | 8a692a6 | 2017-05-31 11:59:30 +0300 | [diff] [blame] | 33 | - 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 | |
| 43 | verifier: |
| 44 | name: inspec |
| 45 | sudo: true |
| 46 | |
| 47 | platforms: |
Martin Polreich | fd2411e | 2018-02-16 14:11:10 +0100 | [diff] [blame] | 48 | - name: <%=ENV['PLATFORM'] || 'saltstack-ubuntu-xenial-salt-stable' %> |
Mykyta Karpin | 8a692a6 | 2017-05-31 11:59:30 +0300 | [diff] [blame] | 49 | driver_config: |
Martin Polreich | af958be | 2018-04-06 15:09:03 +0200 | [diff] [blame] | 50 | image: <%=ENV['PLATFORM'] || 'epcim/salt:saltstack-ubuntu-xenial-salt-stable'%> |
Mykyta Karpin | 8a692a6 | 2017-05-31 11:59:30 +0300 | [diff] [blame] | 51 | platform: ubuntu |
| 52 | |
| 53 | suites: |
| 54 | |
| 55 | - name: designate_without_backend |
| 56 | provisioner: |
| 57 | pillars-from-files: |
| 58 | designate.sls: tests/pillar/designate_ocata.sls |
| 59 | |
Oleh Hryhorov | 799c693 | 2018-01-19 18:43:41 +0200 | [diff] [blame] | 60 | # vim: ft=yaml sw=2 ts=2 sts=2 tw=125 |