forked from michaelklishin/cassandra-chef-cookbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.kitchen.yml
49 lines (43 loc) · 910 Bytes
/
.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
---
driver:
name: vagrant
# without additional memory, ubuntu suites will fail
customize:
memory: 1024
provisioner:
name: chef_solo
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::default]
- name: dsc21
attributes:
cassandra:
package_name: dsc21
version: 2.1.0
release: 1
run_list:
- recipe[cassandra::default]
- name: tarball
run_list:
- recipe[cassandra::tarball]
- name: dse
run_list:
- recipe[cassandra::default]
attributes:
cassandra:
dse:
credentials:
databag: false
username: <%= ENV['CASSANDRA_DSE_USERNAME'] %>
password: <%= ENV['CASSANDRA_DSE_PASSWORD'] %>