forked from GannettDigital/chef-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.kitchen.yml
More file actions
52 lines (49 loc) · 1019 Bytes
/
.kitchen.yml
File metadata and controls
52 lines (49 loc) · 1019 Bytes
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
---
driver:
name: vagrant
customize:
memory: 2048
provisioner:
name: chef_zero
chef_zero_port: 9010
platforms:
- name: gdp-centos-6.7
driver:
box: centos-67
box_url: https://deploy.gmti.gbahn.net/Images/CentOS6/vagrant/centos67-cloud-1.0.0.box
suites:
- name: default
run_list:
- recipe[yum-gd]
- recipe[python]
attributes:
python:
setuptools_version: 18.0.1
virtualenv_version: 13.1.0
- name: package
run_list:
- recipe[yum-gd]
- recipe[python]
attributes:
python:
install_method: "package"
setuptools_version: 18.0.1
virtualenv_version: 13.1.0
- name: custom-package
run_list:
- recipe[yum-gd]
- recipe[python]
attributes:
python:
install_method: "custom-package"
setuptools_version: 18.0.1
virtualenv_version: 13.1.0
- name: source
run_list:
- recipe[yum-gd]
- recipe[python]
attributes:
python:
install_method: "source"
setuptools_version: 18.0.1
virtualenv_version: 13.1.0