-
Notifications
You must be signed in to change notification settings - Fork 8
/
.kitchen.yml
72 lines (69 loc) · 1.76 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
---
driver:
name: vagrant
network:
- ["private_network", { type: "dhcp" }]
provisioner:
name: nodes
platforms:
- name: ubuntu-12.04
driver_config:
network:
- ["private_network", {type: "dhcp"}]
customize:
usb: 'off'
- name: ubuntu-14.04
driver_config:
network:
- ["private_network", {type: "dhcp"}]
customize:
usb: 'off'
- name: centos-6.5
driver_config:
network:
- ["private_network", {type: "dhcp"}]
customize:
usb: 'off'
- name: centos-7.2
driver_config:
network:
- ["private_network", {type: "dhcp"}]
customize:
usb: 'off'
- name: windows-2012r2
driver_config:
#box: mwrock/Windows2012R2
box: opentable/win-2012r2-standard-amd64-nocm
vm_hostname: w2012R1
communicator: winrm
gui: true
network:
- ["private_network", {type: "dhcp"}]
customize:
usb: 'off'
transport:
name: winrm
suites:
- name: test_ad
run_list:
- recipe[hurry-up-and-test::set_non_nat_vbox_ip]
- recipe[contoso_ad::default]
includes:
windows-2012r2
attributes:
domain_controller: true
- name: default
#data_bags_path: "test/integration/default/data_bags"
#encrypted_data_bag_secret_key_path: "test/integration/default/enc_db_secret"
run_list:
- recipe[contoso_ad::linux_dns_helper] #this adds the domain controller to resolv.conf so it can join the domain
- recipe[pbis-open::default]
attributes:
pbis-open:
#use_vault: false
ad_domain: "contoso.local"
perform_reboot: false
# join:
# ou: "OU=IT,OU=Departments,DC=contoso,DC=local"
excludes:
windows-2012r2