-
Notifications
You must be signed in to change notification settings - Fork 3
/
.kitchen.yml
69 lines (62 loc) · 1.37 KB
/
.kitchen.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
---
driver:
name: docker
driver_config:
use_sudo: false
privileged: true
provision_command:
- mkdir -p /run/sshd
- apt-get update && apt-get install -y locales apt-utils git && locale-gen en_US.UTF-8
run_command: /lib/systemd/systemd
platforms:
- name: debian-9
provisioner:
name: salt_solo
log_level: info
require_chef: false
salt_version: latest
formula: aegir
salt_copy_filter:
- .kitchen
- .git
dependencies:
- name: php
repo: git
source: https://github.com/saltstack-formulas/php-formula.git
- name: postfix
repo: git
source: https://github.com/saltstack-formulas/postfix-formula.git
- name: apache
repo: git
source: https://github.com/saltstack-formulas/apache-formula.git
- name: mysql
repo: git
source: https://github.com/saltstack-formulas/mysql-formula.git
pillars_from_files:
aegir.sls: pillar.example
php.sls: examples/pillar.php
mysql.sls: examples/pillar.mysql
pillars:
top.sls:
base:
'*':
- aegir
- php
- mysql
verifier:
name: inspec
sudo: true
reporter: cli
inspec_tests:
- path: test/integration/default
suites:
- name: aegir
provisioner:
state_top:
base:
'*':
- postfix
- php.ng
- apache
- mysql
- aegir