blob: b657514c697e67207f5c65f1e8429139320f6489 [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
Petr Michalec931c5e32017-05-03 10:26:20 +020017 dependencies:
18 - name: horizon
19 repo: git
20 source: https://github.com/salt-formulas/salt-formula-horizon
Martin Polreich5d448b92017-03-30 11:29:47 +020021 state_top:
22 base:
23 "*":
24 - nginx
25 pillars:
26 top.sls:
27 base:
28 "*":
29 - nginx
30
31verifier:
32 name: inspec
33 sudo: true
34
35platforms:
Martin Polreichd7a44402018-02-21 13:09:25 +010036 - name: <%=ENV['PLATFORM'] || 'saltstack-ubuntu-xenial-salt-stable' %>
Martin Polreich5d448b92017-03-30 11:29:47 +020037 driver_config:
Martin Polreich8d153432018-04-25 12:28:36 +020038 image: <%=ENV['PLATFORM'] || 'epcim/salt:saltstack-ubuntu-xenial-salt-stable'%>
Martin Polreich5d448b92017-03-30 11:29:47 +020039 platform: ubuntu
40
41suites:
42
43 - name: horizon_no_ssl
44 provisioner:
45 pillars-from-files:
46 nginx.sls: tests/pillar/horizon_no_ssl.sls
47
48 - name: horizon_with_ssl
49 provisioner:
50 pillars-from-files:
51 nginx.sls: tests/pillar/horizon_with_ssl.sls
52
Ramon Melero12cf6c52017-08-16 13:11:54 -050053 - name: horizon_with_ssl_options
54 provisioner:
55 pillars-from-files:
56 nginx.sls: tests/pillar/horizon_with_ssl_options.sls
57
Martin Polreich5d448b92017-03-30 11:29:47 +020058 - name: proxy
59 provisioner:
60 pillars-from-files:
61 nginx.sls: tests/pillar/proxy.sls
62
Michel Nederlof734be5f2018-03-13 13:57:49 +010063 - name: proxy-rate-limit
64 provisioner:
65 pillars-from-files:
66 nginx.sls: tests/pillar/proxy_rate_limit.sls
67
Martin Polreich5d448b92017-03-30 11:29:47 +020068 - name: redirect
69 provisioner:
70 pillars-from-files:
71 nginx.sls: tests/pillar/redirect.sls
72
73 - name: static
74 provisioner:
75 pillars-from-files:
76 nginx.sls: tests/pillar/static.sls
77
78 - name: stats
79 provisioner:
80 pillars-from-files:
81 nginx.sls: tests/pillar/stats.sls
82# vim: ft=yaml sw=2 ts=2 sts=2 tw=125