blob: 8519c96cd0233dd2ba6f37130df87fef1e52c313 [file] [log] [blame]
Martin Polreich5d448b92017-03-30 11:29:47 +02001---
2driver:
3 name: docker
4 hostname: nginx.ci.local
5 use_sudo: false
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: nginx
15 grains:
16 noservices: True
17 state_top:
18 base:
19 "*":
20 - nginx
21 pillars:
22 top.sls:
23 base:
24 "*":
25 - nginx
26
27verifier:
28 name: inspec
29 sudo: true
30
31platforms:
32 - name: <%=ENV['PLATFORM'] || 'ubuntu-xenial'%>
33 driver_config:
34 image: <%=ENV['PLATFORM'] || 'trevorj/salty-whales:xenial'%>
35 platform: ubuntu
36
37suites:
38
39 - name: horizon_no_ssl
40 provisioner:
41 pillars-from-files:
42 nginx.sls: tests/pillar/horizon_no_ssl.sls
43
44 - name: horizon_with_ssl
45 provisioner:
46 pillars-from-files:
47 nginx.sls: tests/pillar/horizon_with_ssl.sls
48
49 - name: proxy
50 provisioner:
51 pillars-from-files:
52 nginx.sls: tests/pillar/proxy.sls
53
54 - name: redirect
55 provisioner:
56 pillars-from-files:
57 nginx.sls: tests/pillar/redirect.sls
58
59 - name: static
60 provisioner:
61 pillars-from-files:
62 nginx.sls: tests/pillar/static.sls
63
64 - name: stats
65 provisioner:
66 pillars-from-files:
67 nginx.sls: tests/pillar/stats.sls
68# vim: ft=yaml sw=2 ts=2 sts=2 tw=125