blob: d7cfa3193674823be1126b59fa0e44a3c3e2159c [file] [log] [blame]
Martin81940628202017-02-20 10:04:28 +01001---
2driver:
3 name: docker
4 hostname: openssh.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: openssh
15 grains:
16 noservices: True
17 state_top:
18 base:
19 "*":
azvyagintsevfd555032017-12-18 15:50:25 +020020 - linux.system.user
Martin81940628202017-02-20 10:04:28 +010021 - openssh
22 pillars:
23 top.sls:
24 base:
25 "*":
26 - openssh
27 dependencies:
28 - name: linux
29 repo: git
30 source: "https://github.com/salt-formulas/salt-formula-linux"
31
32verifier:
33 name: inspec
34 sudo: true
35
36
37platforms:
38 - name: <%=ENV['PLATFORM'] || 'ubuntu-xenial'%>
39 driver_config:
40 image: <%=ENV['PLATFORM'] || 'trevorj/salty-whales:xenial'%>
41 platform: ubuntu
42
43suites:
Martin81940628202017-02-20 10:04:28 +010044 - name: openssh_client
45 provisioner:
46 pillars-from-files:
azvyagintsevfd555032017-12-18 15:50:25 +020047 openssh.sls: tests/pillar/client.sls
Martin81940628202017-02-20 10:04:28 +010048
49 - name: openssh_server
50 provisioner:
51 pillars-from-files:
azvyagintsevfd555032017-12-18 15:50:25 +020052 openssh.sls: tests/pillar/server.sls
53
54
Martin81940628202017-02-20 10:04:28 +010055# vim: ft=yaml sw=2 ts=2 sts=2 tw=125