forked from logicalclocks/ndb-chef
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.kitchen.yml.old
executable file
·72 lines (72 loc) · 1.45 KB
/
.kitchen.yml.old
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
---
driver_config:
box: XXXX
box_url: YYYY
driver_plugin: vagrant
platforms:
-
attributes:
private_ips:
- "192.168.0.2"
public_ips:
- "192.168.0.2"
driver_config:
customize:
memory: 2048
network:
-
- private_network
-
ip: "192.168.0.2"
name: mgm
run_list:
- "recipe[kagent::install]"
- "recipe[ndb::install]"
- "recipe[ndb::mgmd]"
- "recipe[ndb::ndbd]"
-
attributes:
private_ips:
- "192.168.0.3"
driver_config:
customize:
memory: 2048
network:
-
- private_network
-
ip: "192.168.0.3"
name: ndbd
run_list:
- "recipe[kagent::install]"
- "recipe[ndb::install]"
- "recipe[ndb::ndbd]"
- "recipe[ndb::mysqld]"
- "recipe[ndb::memcached]"
suites:
-
attributes:
mysql:
run_as_user: mysql
ndb:
DataMemory: "66"
NoOfReplicas: 2
dir: /tmp
memcached:
private_ips:
- "192.168.0.3"
mgmd:
private_ips:
- "192.168.0.2"
mysql_port: 3399
mysql_socket: /tmp/mysql-alt.sock
mysqld:
private_ips:
- "192.168.0.3"
ndbd:
private_ips:
- "192.168.0.2"
- "192.168.0.3"
vagrant: "true"
name: default
run_list: ~