blob: b55fdc7bdbe382a717e432ea4926a4f946aba7a4 [file] [log] [blame]
Martin Polreichb9481722018-01-22 12:08:23 +01001---
2driver:
3 name: docker
4 hostname: barbican.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: barbican
15 grains:
16 noservices: True
Vasyl Saienko88bc10b2018-03-03 04:22:03 +020017 dependencies:
18 - name: apache
19 repo: git
Martin Polreich77836a82018-11-29 12:29:07 +010020 source: https://gerrit.mcp.mirantis.com/salt-formulas/apache
Martin Polreichb9481722018-01-22 12:08:23 +010021 state_top:
22 base:
23 "*":
Vasyl Saienko88bc10b2018-03-03 04:22:03 +020024 - apache
Martin Polreichb9481722018-01-22 12:08:23 +010025 - barbican
26 pillars:
27 top.sls:
28 base:
29 "*":
30 - barbican
31
32verifier:
33 name: inspec
34 sudo: true
35
Martin Polreich77836a82018-11-29 12:29:07 +010036docker_images:
37 - &xenial-20177 <%=ENV['IMAGE_XENIAL_20177'] || 'docker-dev-local.docker.mirantis.net/epcim/salt/saltstack-ubuntu-xenial-salt-2017.7/salt:2018_11_19'%>
38 - &xenial-stable <%=ENV['IMAGE_XENIAL_STABLE'] || 'docker-dev-local.docker.mirantis.net/epcim/salt/saltstack-ubuntu-xenial-salt-stable/salt:2018_11_19'%>
Martin Polreichb9481722018-01-22 12:08:23 +010039
40platforms:
Martin Polreich77836a82018-11-29 12:29:07 +010041 - name: xenial-2017.7
Martin Polreichb9481722018-01-22 12:08:23 +010042 driver_config:
Martin Polreich77836a82018-11-29 12:29:07 +010043 image: *xenial-20177
44 platform: ubuntu
45
46 - name: xenial-stable
47 driver_config:
48 image: *xenial-stable
Martin Polreichb9481722018-01-22 12:08:23 +010049 platform: ubuntu
50
51suites:
52 - name: ssl
53 provisioner:
54 pillars-from-files:
55 barbican.sls: tests/pillar/ssl.sls
56
57 - name: control_single
58 provisioner:
59 pillars-from-files:
60 barbican.sls: tests/pillar/control_single.sls
61
62 - name: control_cluster
63 provisioner:
64 pillars-from-files:
65 barbican.sls: tests/pillar/control_cluster.sls
66# vim: ft=yaml sw=2 ts=2 sts=2 tw=125