forked from rackspace-cookbooks/jenkinsstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.kitchen.yml
66 lines (61 loc) · 1.66 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
---
# This file is managed by the stacks toolchain. It may be overwritten by
# updates to the template. Your customizations should be placed inside the
# .kitchen.local.yml, which will not be overwritten by newer templates.
# If you need to override the driver, do it in ~/.kitchen/config.yml or using
# environment variables like VAGRANT_DEFAULT_PROVIDER.
driver:
name: vagrant
network:
- ["forwarded_port", {guest: 80, host: 8000, auto_correct: true}]
- ["forwarded_port", {guest: 443, host: 8443, auto_correct: true}]
- ["forwarded_port", {guest: 8080, host: 8080, auto_correct: true}]
driver_config:
require_chef_omnibus: 11.12.8
provisioner:
name: chef_zero
client_rb:
environment: _default
attributes:
cloud:
public_ipv4: '127.0.0.1'
authorization:
sudo:
users: ['vagrant']
passwordless: true
platformstack:
cloud_backup:
enabled: false
cloud_monitoring:
enabled: false
omnibus_updater:
enabled: false
rackspace:
cloud_credentials:
username: 'racker'
api_key: 'sekrit'
jenkinsstack:
proxy_password: 'testingonly'
platforms:
- name: ubuntu-12.04
run_list:
- recipe[apt]
- name: ubuntu-14.04
run_list:
- recipe[apt]
- name: centos-6.5
run_list:
- recipe[yum]
suites:
- name: default
run_list:
- recipe[jenkinsstack::java]
- recipe[jenkinsstack::master]
- recipe[jenkinsstack::ruby]
- recipe[jenkinsstack::find_all]
- name: slave
run_list:
- recipe[jenkinsstack::java]
- recipe[jenkinsstack::slave]
- recipe[jenkinsstack::ruby]
- recipe[jenkinsstack::find_all]