blob: f4b0e51189ac6db9371e2113033ee4d0a92a5c63 [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
Martin Polreich8da53152019-10-24 14:07:21 +020020 source: https://gerrit.mcp.mirantis.com/salt-formulas/horizon
Martin Polreichf48ac422019-04-10 08:21:45 +020021 branch: <%=ENV['GERRIT_BRANCH'] || 'master' %>
Martin Polreich5d448b92017-03-30 11:29:47 +020022 state_top:
23 base:
24 "*":
25 - nginx
26 pillars:
27 top.sls:
28 base:
29 "*":
30 - nginx
31
32verifier:
33 name: inspec
34 sudo: true
35
Martin Polreich06c83a92019-01-25 15:32:30 +010036docker_images:
Martin Polreich082dfe72019-10-15 14:27:34 +020037 - &xenial-20177 <%=ENV['IMAGE_XENIAL_20177'] || 'docker-dev-local.docker.mirantis.net/mirantis/drivetrain/salt-formulas-ci/salt-formulas-ci-xenial-2017.7:latest'%>
Martin Polreich06c83a92019-01-25 15:32:30 +010038
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
Martin Polreich5d448b92017-03-30 11:29:47 +020045suites:
Martin Polreich5d448b92017-03-30 11:29:47 +020046 - name: horizon_no_ssl
47 provisioner:
48 pillars-from-files:
49 nginx.sls: tests/pillar/horizon_no_ssl.sls
50
51 - name: horizon_with_ssl
52 provisioner:
53 pillars-from-files:
54 nginx.sls: tests/pillar/horizon_with_ssl.sls
55
Ramon Melero12cf6c52017-08-16 13:11:54 -050056 - name: horizon_with_ssl_options
57 provisioner:
58 pillars-from-files:
59 nginx.sls: tests/pillar/horizon_with_ssl_options.sls
60
Martin Polreich5d448b92017-03-30 11:29:47 +020061 - name: proxy
62 provisioner:
63 pillars-from-files:
64 nginx.sls: tests/pillar/proxy.sls
65
Michel Nederlof734be5f2018-03-13 13:57:49 +010066 - name: proxy-rate-limit
67 provisioner:
68 pillars-from-files:
69 nginx.sls: tests/pillar/proxy_rate_limit.sls
70
Martin Polreich5d448b92017-03-30 11:29:47 +020071 - name: redirect
72 provisioner:
73 pillars-from-files:
74 nginx.sls: tests/pillar/redirect.sls
75
76 - name: static
77 provisioner:
78 pillars-from-files:
79 nginx.sls: tests/pillar/static.sls
80
81 - name: stats
82 provisioner:
83 pillars-from-files:
84 nginx.sls: tests/pillar/stats.sls
Vasyl Saienkod3348f62018-02-09 20:08:01 +020085
86 - name: proxy_with_ssl
87 provisioner:
88 pillars-from-files:
89 nginx.sls: tests/pillar/proxy_with_ssl.sls
Martin Polreich5d448b92017-03-30 11:29:47 +020090# vim: ft=yaml sw=2 ts=2 sts=2 tw=125