-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.kitchen.yml
50 lines (46 loc) · 1.54 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
---
driver:
name: vagrant
provisioner:
name: chef_zero
data_bags_path: "../../data_bags/"
# You many wish to test your CHEF::Log.<level> messages while using test-kitchen. Change the below
# value to the level of choice. For cleaner output, comment this option out.
log_level: info
# You may wish to disable always updating cookbooks in CI or other testing environments.
# For example:
# always_update_cookbooks: <%= !ENV['CI'] %>
always_update_cookbooks: true
verifier:
name: inspec
platforms:
- name: ubuntu-16.04
- name: centos-7.2
suites:
- name: demo
run_list:
- recipe[netapp_docker_test::default]
verifier:
inspec_tests:
- test/smoke/default
attributes:
docker:
members: 'vagrant'
netapp_docker_test:
config:
netapp:
ontap_mgmt_ip: # Set as your NetApp SVM Management IP
ontap_data_ip: # Set as your NetApp SVM NFS IP
svm: # Set as your NetApp SVM Name
aggregate: # Set as valid NetApp aggregate
username: # Set as SVM admin user
password: # Set as SVM user password
prefix: 'netapp_docker_test_'
ontap_iscsi:
ontap_mgmt_ip: # Set as your NetApp SVM Management IP
ontap_data_ip: # Set as your NetApp SVM NFS IP
svm: # Set as your NetApp SVM Name
aggregate: # Set as valid NetApp aggregate
username: # Set as SVM admin user
password: # Set as SVM user password
prefix: 'netapp_docker_test_'