-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.kitchen.yml
44 lines (40 loc) · 1009 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
---
driver:
name: vagrant
provisioner:
name: chef_zero
# 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
suites:
- name: default
run_list:
- recipe[chef-apt-docker::default]
- recipe[test::default]
- recipe[test::certs]
- recipe[jmccann-docker-host::default]
- recipe[vault-docker::default]
verifier:
inspec_tests:
- test/smoke/default
attributes:
vault-docker:
config:
vault_local_config:
listener:
tcp:
tls_cert_file: /vault/ssl/vault.crt
tls_key_file: /vault/ssl/vault.key
storage:
file:
path: /vault/file
port:
- "8200:8200"
- "8201:8201"
volumes:
- /root/ssl:/vault/ssl