Petr Michalec | e9a6c2a | 2017-03-05 20:14:34 +0100 | [diff] [blame] | 1 | --- |
| 2 | driver: |
| 3 | name: docker |
| 4 | hostname: keystone.ci.local |
Filip Pytloun | 8703129 | 2017-05-03 15:08:01 +0200 | [diff] [blame] | 5 | use_sudo: false |
Petr Michalec | e9a6c2a | 2017-03-05 20:14:34 +0100 | [diff] [blame] | 6 | |
| 7 | provisioner: |
| 8 | name: salt_solo |
| 9 | salt_install: bootstrap |
| 10 | salt_bootstrap_url: https://bootstrap.saltstack.com |
| 11 | salt_version: latest |
| 12 | require_chef: false |
Martin Polreich | 962dfdd | 2017-06-08 14:04:14 +0200 | [diff] [blame] | 13 | log_level: error |
Petr Michalec | e9a6c2a | 2017-03-05 20:14:34 +0100 | [diff] [blame] | 14 | formula: keystone |
| 15 | grains: |
| 16 | noservices: False |
| 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: apache |
| 25 | repo: git |
| 26 | source: https://github.com/salt-formulas/salt-formula-apache |
| 27 | - name: memcached |
| 28 | repo: git |
| 29 | source: https://github.com/salt-formulas/salt-formula-memcached |
| 30 | - name: cadf |
| 31 | repo: git |
| 32 | source: https://github.com/salt-formulas/salt-formula-cadf |
| 33 | - name: rabbitmq |
| 34 | repo: git |
| 35 | source: https://github.com/salt-formulas/salt-formula-rabbitmq |
| 36 | state_top: |
| 37 | base: |
| 38 | "*": |
| 39 | - linux |
| 40 | - mysql |
| 41 | - keystone |
| 42 | pillars: |
| 43 | top.sls: |
| 44 | base: |
| 45 | "*": |
| 46 | - linux_repo_openstack |
| 47 | - keystone |
| 48 | - mysql_platform_specific |
| 49 | mysql_platform_specific.sls: {} |
| 50 | pillars-from-files: |
| 51 | linux_repo_openstack.sls: tests/pillar/repo_mos9.sls |
| 52 | |
| 53 | verifier: |
| 54 | name: inspec |
| 55 | sudo: true |
| 56 | |
| 57 | platforms: |
| 58 | - name: <%=ENV['PLATFORM'] || 'ubuntu-xenial'%> |
| 59 | driver_config: |
| 60 | image: <%=ENV['PLATFORM'] || 'trevorj/salty-whales:xenial'%> |
| 61 | platform: ubuntu |
| 62 | provisioner: |
| 63 | pillars: |
| 64 | mysql_platform_specific.sls: |
| 65 | mysql: |
| 66 | server: |
| 67 | # workaround, formula not yet handle platform default version |
| 68 | version: "<%=ENV['MYSQL_VERSION'] || '5.7'%>" |
| 69 | |
| 70 | suites: |
| 71 | |
| 72 | - name: single |
| 73 | provisioner: |
| 74 | pillars-from-files: |
| 75 | keystone.sls: tests/pillar/single.sls |
| 76 | |
Filip Pytloun | 54c4566 | 2017-09-07 16:43:54 +0200 | [diff] [blame^] | 77 | - name: single_domain |
| 78 | provisioner: |
| 79 | grains: |
| 80 | noservices: True |
| 81 | pillars-from-files: |
| 82 | keystone.sls: tests/pillar/single_domain.sls |
| 83 | |
Petr Michalec | e9a6c2a | 2017-03-05 20:14:34 +0100 | [diff] [blame] | 84 | - name: single_fernet |
| 85 | provisioner: |
| 86 | pillars-from-files: |
| 87 | keystone.sls: tests/pillar/single_fernet.sls |
| 88 | |
| 89 | - name: under-apache |
| 90 | provisioner: |
| 91 | grains: |
| 92 | noservices: True |
| 93 | pillars-from-files: |
| 94 | keystone.sls: tests/pillar/apache_wsgi.sls |
| 95 | state_top: |
| 96 | base: |
| 97 | "*": |
| 98 | - linux |
| 99 | - mysql |
| 100 | - apache |
| 101 | - keystone |
| 102 | |
| 103 | # vim: ft=yaml sw=2 ts=2 sts=2 tw=125 |