forked from sous-chefs/sc-mongodb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.kitchen.yml
105 lines (91 loc) · 1.88 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
---
driver:
name: vagrant
chef_version: latest
linked_clone: true
verifier:
name: inspec
client_rb:
treat_deprecation_warnings_as_errors: true
resource_cloning: false
platforms:
- name: ubuntu-12.04
run_list:
- "recipe[apt]"
- name: ubuntu-14.04
run_list:
- "recipe[apt]"
- name: ubuntu-16.04
run_list:
- "recipe[apt]"
- name: debian-7.11
run_list:
- "recipe[apt]"
- name: centos-6.8
run_list:
- "recipe[yum]"
- "recipe[yum-epel]"
- name: centos-7.4
run_list:
- "recipe[yum]"
- "recipe[yum-epel]"
suites:
- name: default
run_list:
- "recipe[sc-mongodb]"
- name: replicaset
run_list:
- "recipe[sc-mongodb::replicaset]"
attributes:
mongodb:
cluster_name: kitchen
config:
replSet: kitchen
- name: configserver
run_list:
- "recipe[sc-mongodb::configserver]"
- name: mongos
run_list:
- "recipe[sc-mongodb::mongos]"
attributes:
mongodb:
cluster_name: default
config:
configdb: my_configserver
- name: mms_monitoring_agent
run_list:
- "recipe[sc-mongodb::mms_monitoring_agent]"
attributes:
mongodb:
mms_agent:
api_key: "random key"
monitoring:
sslRequireValidServerCertificates: false
excludes:
# Upstart is not present
- debian-7.2.0
- name: mms_backup_agent
run_list:
- "recipe[sc-mongodb::mms_backup_agent]"
attributes:
mongodb:
mms_agent:
api_key: "random key"
backup:
sslRequireValidServerCertificates: false
excludes:
# Upstart is not present
- debian-7.2.0
- name: user_management
run_list:
- "recipe[sc-mongodb::default]"
- "recipe[sc-mongodb::user_management]"
attributes:
mongodb:
install_method: mongodb-org
# Needed to read the correct config file
# since mongo 2.6
default_init_name: mongod
dbconfig_file: mongodb.conf
config:
auth: true