-
Notifications
You must be signed in to change notification settings - Fork 0
/
.kitchen.yml
38 lines (31 loc) · 1.04 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
---
driver:
name: vagrant
vagrantfiles:
- test/integration/Vagrantfile.rb
## The forwarded_port port feature lets you connect to ports on the VM guest via
## localhost on the host.
## see also: https://docs.vagrantup.com/v2/networking/forwarded_ports.html
# network:
# - ["forwarded_port", {guest: 80, host: 8080}]
provisioner:
name: chef_zero
## require_chef_omnibus specifies a specific chef version to install. You can
## also set this to `true` to always use the latest version.
## see also: https://docs.chef.io/config_yml_kitchen.html
# require_chef_omnibus: 12.6.0
platforms:
- name: centos-7.2
suites:
- name: default
encrypted_data_bag_secret_key_path: "test/integration/encrypted_data_bag_secret"
run_list:
- recipe[ecology-cluster::default]
- name: head
encrypted_data_bag_secret_key_path: "test/integration/encrypted_data_bag_secret"
run_list:
- role[head]
- name: compute
encrypted_data_bag_secret_key_path: "test/integration/encrypted_data_bag_secret"
run_list:
- role[compute]