blob: 83a7a4c33f4b2266fb0252529a1b517bd49bb65d [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
Martin Polreich06c83a92019-01-25 15:32:30 +010035docker_images:
Martin Polreich06c83a92019-01-25 15:32:30 +010036 - &xenial-20177 <%=ENV['IMAGE_XENIAL_20177'] || 'docker-dev-local.docker.mirantis.net/epcim/salt/saltstack-ubuntu-xenial-salt-2017.7/salt:2018_11_19'%>
37 - &xenial-stable <%=ENV['IMAGE_XENIAL_STABLE'] || 'docker-dev-local.docker.mirantis.net/epcim/salt/saltstack-ubuntu-xenial-salt-stable/salt:2018_11_19'%>
38
Martin Polreich5d448b92017-03-30 11:29:47 +020039platforms:
Martin Polreich06c83a92019-01-25 15:32:30 +010040 - name: xenial-2017.7
41 driver_config:
42 image: *xenial-20177
43 platform: ubuntu
44
45 - name: xenial-stable
46 driver_config:
47 image: *xenial-stable
Martin Polreich5d448b92017-03-30 11:29:47 +020048 platform: ubuntu
49
50suites:
Martin Polreich5d448b92017-03-30 11:29:47 +020051 - name: horizon_no_ssl
52 provisioner:
53 pillars-from-files:
54 nginx.sls: tests/pillar/horizon_no_ssl.sls
55
56 - name: horizon_with_ssl
57 provisioner:
58 pillars-from-files:
59 nginx.sls: tests/pillar/horizon_with_ssl.sls
60
Ramon Melero12cf6c52017-08-16 13:11:54 -050061 - name: horizon_with_ssl_options
62 provisioner:
63 pillars-from-files:
64 nginx.sls: tests/pillar/horizon_with_ssl_options.sls
65
Martin Polreich5d448b92017-03-30 11:29:47 +020066 - name: proxy
67 provisioner:
68 pillars-from-files:
69 nginx.sls: tests/pillar/proxy.sls
70
Michel Nederlof734be5f2018-03-13 13:57:49 +010071 - name: proxy-rate-limit
72 provisioner:
73 pillars-from-files:
74 nginx.sls: tests/pillar/proxy_rate_limit.sls
75
Martin Polreich5d448b92017-03-30 11:29:47 +020076 - name: redirect
77 provisioner:
78 pillars-from-files:
79 nginx.sls: tests/pillar/redirect.sls
80
81 - name: static
82 provisioner:
83 pillars-from-files:
84 nginx.sls: tests/pillar/static.sls
85
86 - name: stats
87 provisioner:
88 pillars-from-files:
89 nginx.sls: tests/pillar/stats.sls
Vasyl Saienkod3348f62018-02-09 20:08:01 +020090
91 - name: proxy_with_ssl
92 provisioner:
93 pillars-from-files:
94 nginx.sls: tests/pillar/proxy_with_ssl.sls
Martin Polreich5d448b92017-03-30 11:29:47 +020095# vim: ft=yaml sw=2 ts=2 sts=2 tw=125