forked from michaelklishin/cassandra-chef-cookbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.kitchen.yml
65 lines (57 loc) · 1.31 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
---
driver:
name: vagrant
# without additional memory, ubuntu suites will fail
customize:
memory: 1024
provisioner:
name: chef_zero
attributes:
cassandra:
cluster_name: test
platforms:
- name: ubuntu-12.04
run_list:
- recipe[apt]
- name: centos-6.4
run_list:
- recipe[yum]
suites:
- name: default
run_list:
- recipe[cassandra-dse::default]
- name: opscenter-agent-datastax
attributes:
cassandra:
opscenter:
agent:
server_host: 0.0.0.0
use_chef_search: false
run_list:
- recipe[cassandra-dse::default]
- recipe[cassandra-dse::opscenter_agent_datastax]
- name: opscenter-server-datastax
run_list:
- recipe[cassandra-dse::default]
- recipe[cassandra-dse::opscenter_server]
- name: dsc21
attributes:
cassandra:
package_name: dsc21
version: 2.1.0
release: 1
run_list:
- recipe[cassandra-dse::default]
- name: tarball
run_list:
- recipe[cassandra-dse::tarball]
- name: dse
run_list:
- recipe[cassandra-dse::default]
attributes:
cassandra:
dse:
credentials:
databag: false
username: <%= ENV['CASSANDRA_DSE_USERNAME'] %>
password: <%= ENV['CASSANDRA_DSE_PASSWORD'] %>