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 |
| 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 | |
| 44 | verifier: |
| 45 | name: inspec |
| 46 | sudo: true |
| 47 | |
| 48 | platforms: |
| 49 | - name: <%= ENV['PLATFORM'] || 'ubuntu-xenial' %> |
| 50 | driver_config: |
| 51 | image: <%= ENV['PLATFORM'] || 'trevorj/salty-whales:xenial' %> |
| 52 | platform: ubuntu |
| 53 | |
| 54 | suites: |
| 55 | |
| 56 | - name: designate_without_backend |
| 57 | provisioner: |
| 58 | pillars-from-files: |
| 59 | designate.sls: tests/pillar/designate_ocata.sls |
| 60 | |
Oleh Hryhorov | 799c693 | 2018-01-19 18:43:41 +0200 | [diff] [blame^] | 61 | # vim: ft=yaml sw=2 ts=2 sts=2 tw=125 |