-
Notifications
You must be signed in to change notification settings - Fork 16
/
.kitchen.yml
85 lines (69 loc) · 1.73 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
---
driver:
name: docker
hostname: maas.ci.local
#socket: tcp://127.0.0.1:2376
use_sudo: false
run_options: -v /dev/log:/dev/log:ro
provisioner:
name: salt_solo
salt_install: bootstrap
salt_bootstrap_url: https://bootstrap.saltstack.com
salt_version: latest
require_chef: false
formula: maas
log_level: info
state_top:
base:
"*":
# - rsyslog
- postgresql
- maas
pillars:
top.sls:
base:
"*":
# - rsyslog
- postgresql
- linux
- maas
pillars-from-files:
postgresql.sls: tests/pillar/postgresql.sls
# rsyslog.sls: tests/pillar/rsyslog.sls
linux.sls: tests/pillar/linux.sls
grains:
noservices: False
kitchen-test: True
dependencies:
- name: postgresql
repo: git
source: https://github.com/salt-formulas/salt-formula-postgresql
- name: rsyslog
repo: git
source: https://github.com/salt-formulas/salt-formula-rsyslog
platforms:
- name: <%=ENV['PLATFORM'] || 'saltstack-ubuntu-xenial-salt-stable' %>
driver_config:
image: <%=ENV['PLATFORM'] || 'epcim/salt-formulas:saltstack-ubuntu-xenial-salt-stable'%>
platform: ubuntu
verifier:
name: inspec
sudo: true
suites:
- name: maas_cluster
provisioner:
pillars-from-files:
maas.sls: tests/pillar/maas_cluster.sls
#- name: disk_layout
#provisioner:
#pillars-from-files:
#maas.sls: tests/pillar/disk_layout.sls
#- name: maas_mirror
#provisioner:
#pillars-from-files:
#maas.sls: tests/pillar/maas_mirror.sls
# - name: maas_region
# provisioner:
# pillars-from-files:
# maas.sls: tests/pillar/maas_region.sls
# vim: ft=yaml sw=2 ts=2 sts=2 tw=125