forked from sous-chefs/jenkins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.kitchen.yml
131 lines (131 loc) · 3.26 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
---
driver_plugin: vagrant
platforms:
- name: ubuntu-12.10
driver_config:
box: canonical-ubuntu-12.10
box_url: http://cloud-images.ubuntu.com/vagrant/quantal/current/quantal-server-cloudimg-amd64-vagrant-disk1.box
require_chef_omnibus: 11.4.0
network:
- [private_network, ip: 33.33.33.10]
customize:
cpus: 2
memory: 1024
run_list:
- recipe[apt]
- name: ubuntu-12.04
driver_config:
box: canonical-ubuntu-12.04
box_url: http://cloud-images.ubuntu.com/vagrant/precise/current/precise-server-cloudimg-amd64-vagrant-disk1.box
require_chef_omnibus: 11.4.0
network:
- [private_network, ip: 33.33.33.10]
customize:
cpus: 2
memory: 1024
run_list:
- recipe[apt]
- name: ubuntu-10.04
driver_config:
box: opscode_ubuntu-10.04_provisionerless
box_url: https://opscode-vm.s3.amazonaws.com/vagrant/opscode_ubuntu-10.04_provisionerless.box
require_chef_omnibus: 11.4.0
network:
- [private_network, ip: 33.33.33.10]
customize:
cpus: 2
memory: 1024
run_list:
- recipe[apt]
- name: centos-5.9
driver_config:
box: opscode-centos-5.9
box_url: https://opscode-vm.s3.amazonaws.com/vagrant/opscode_centos-5.9_provisionerless.box
require_chef_omnibus: 11.4.0
network:
- [private_network, ip: 33.33.33.10]
customize:
cpus: 2
memory: 1024
- name: centos-6.4
driver_config:
box: centos-6.4
box_url: https://opscode-vm.s3.amazonaws.com/vagrant/opscode_centos-6.4_provisionerless.box
require_chef_omnibus: 11.4.0
network:
- [private_network, ip: 33.33.33.10]
customize:
cpus: 2
memory: 1024
suites:
- name: server
run_list:
- recipe[jenkins::server]
attributes:
jenkins:
server:
plugins:
- name: git
version: 1.3.0
- name: server-proxy-nginx
run_list:
- recipe[jenkins::server]
- recipe[jenkins::proxy_nginx]
attributes:
jenkins:
http_proxy:
host_name: 33.33.33.10
- name: server-proxy-nginx-ssl
run_list:
- recipe[jenkins-test::generate_certs]
- recipe[jenkins::server]
- recipe[jenkins::proxy_nginx]
attributes:
jenkins:
http_proxy:
host_name: 33.33.33.10
ssl:
enabled: true
redirect_http: true
- name: server-proxy-nginx-basicauth
run_list:
- recipe[jenkins::server]
- recipe[jenkins::proxy_nginx]
attributes:
jenkins:
http_proxy:
host_name: 33.33.33.10
server_auth_method: basic
basic_auth_username: foo
basic_auth_password: bar
- name: server-proxy-apache2
run_list:
- recipe[jenkins::server]
- recipe[jenkins::proxy_apache2]
attributes:
jenkins:
http_proxy:
host_name: 33.33.33.10
- name: server-proxy-apache2-ssl
run_list:
- recipe[jenkins-test::generate_certs]
- recipe[jenkins::server]
- recipe[jenkins::proxy_apache2]
attributes:
jenkins:
http_proxy:
host_name: 33.33.33.10
ssl:
enabled: true
redirect_http: true
- name: server-proxy-apache2-basicauth
run_list:
- recipe[jenkins::server]
- recipe[jenkins::proxy_apache2]
attributes:
jenkins:
http_proxy:
host_name: 33.33.33.10
server_auth_method: basic
basic_auth_username: foo
basic_auth_password: bar