forked from rackspace-cookbooks/automatic_updates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.kitchen.yml
66 lines (60 loc) · 1.59 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
---
################################################################################
# Any local customizations should be placed inside the .kitchen.local.yml, which
# will not be checked in or overwritten. You may also use ~/.kitchen/config.yml
# or environment variables like VAGRANT_DEFAULT_PROVIDER. Anything in those will
# take precedence over anything set in `.kitchen.yml`.
################################################################################
driver:
name: vagrant # provide a default test-kitchen driver, vagrant
driver_config:
require_chef_omnibus: true
provisioner:
name: chef_zero
verifier:
name: inspec
platforms:
- name: ubuntu-16.04
run_list:
- recipe[apt]
- name: ubuntu-14.04
run_list:
- recipe[apt]
- name: ubuntu-12.04
run_list:
- recipe[apt]
- name: centos-7
run_list:
- recipe[yum]
- name: centos-6
run_list:
- recipe[yum]
suites:
- name: default
run_list: recipe[automatic_updates]
- name: rackspace
run_list: recipe[automatic_updates]
attributes:
openssh:
server:
password_authentication: 'yes'
permit_root_login: 'yes'
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
iptables:
allow_ssh_from_world: true
rackspace:
cloud_credentials:
username: 'racker'
api_key: 'sekrit'