blob: 42ec81af724dfc321f1d67f6c53a09956ace5566 [file] [log] [blame]
Petr Michalec579e64d2017-03-24 12:54:29 +01001---
2driver:
3 name: docker
4 hostname: opencontrail
5 use_sudo: true
6
7provisioner:
8 name: salt_solo
9 salt_install: bootstrap
10 salt_bootstrap_url: https://bootstrap.saltstack.com
11 salt_version: latest
12 require_chef: false
13 log_level: error
14 formula: opencontrail
15 grains:
16 noservices: True
Petr Michalec579e64d2017-03-24 12:54:29 +010017 dependencies:
18 - name: linux
19 repo: git
20 source: https://github.com/salt-formulas/salt-formula-linux
21 state_top:
22 base:
23 "*":
24 - linux
25 - opencontrail
26 pillars:
27 top.sls:
28 base:
29 "*":
Martin Polreich9ea2c472017-04-06 09:59:10 +020030 - linux_repo_openstack
31 - linux_repo_opencontrail
Petr Michalec579e64d2017-03-24 12:54:29 +010032 - linux_repo_cassandra
33 - linux_repo_mos
34 - linux
35 - opencontrail
36 - opencontrail_juniper
37 linux.sls:
38 linux:
39 system:
40 enabled: true
41 name: opencontrail
Petr Michalec579e64d2017-03-24 12:54:29 +010042 opencontrail_juniper.sls: {}
43 pillars-from-files:
44 linux_repo_mos.sls: tests/pillar/repo_mos8.sls
45 linux_repo_cassandra.sls: tests/pillar/repo_cassandra.sls
Martin Polreich9ea2c472017-04-06 09:59:10 +020046 linux_repo_opencontrail.sls: tests/pillar/repo_opencontrail.sls
47 linux_repo_openstack.sls: tests/pillar/repo_openstack.sls
Petr Michalec579e64d2017-03-24 12:54:29 +010048
49verifier:
50 name: inspec
51 sudo: true
52
53platforms:
Martin Polreich9ea2c472017-04-06 09:59:10 +020054 - name: <%= ENV['PLATFORM'] || 'ubuntu-xenial' %>
Petr Michalec579e64d2017-03-24 12:54:29 +010055 driver_config:
Martin Polreich9ea2c472017-04-06 09:59:10 +020056 image: <%= ENV['PLATFORM'] || 'trevorj/salty-whales:xenial' %>
Petr Michalec579e64d2017-03-24 12:54:29 +010057 platform: ubuntu
58
59suites:
60
Martin Polreich9ea2c472017-04-06 09:59:10 +020061 - name: <%= ENV['SUITE'] || 'single' %>
Petr Michalec579e64d2017-03-24 12:54:29 +010062 provisioner:
63 pillars-from-files:
Martin Polreich9ea2c472017-04-06 09:59:10 +020064 opencontrail.sls: tests/pillar/<%= ENV['SUITE'] || 'single' %>.sls
Petr Michalec579e64d2017-03-24 12:54:29 +010065
66# vim: ft=yaml sw=2 ts=2 sts=2 tw=125