-
Notifications
You must be signed in to change notification settings - Fork 5
/
kitchen.yml
48 lines (44 loc) · 1020 Bytes
/
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
---
driver:
name: vagrant
provisioner:
name: chef_zero
product_name: chef
product_version: <%= ENV['CHEF_VERSION'] || 'latest' %>
always_update_cookbooks: true
client_rb:
exit_status: :enabled
client_fork: false # Forked instances don't return the real exit code
enforce_idempotency: true
install_strategy: once
max_retries: 1
multiple_converge: 2
retry_on_exit_code: [35]
verifier:
name: inspec
platforms:
- name: windows-2012r2
driver_config:
box: tas50/windows_2012r2
gui: false
- name: windows-2016
driver_config:
box: tas50/windows_2016
gui: false
- name: windows-2019
driver_config:
box: tas50/windows_2019
gui: false
suites:
- name: default
run_list:
- recipe[sbp_mcafee::default]
verifier:
inspec_tests:
- test/integration/default
attributes:
mcafee:
agent:
url: <%= ENV['MCAFEE_AGENT_URL'] %>
virusscan:
url: <%= ENV['MCAFEE_VIRUSSCAN_URL'] %>