forked from michaelklishin/cassandra-chef-cookbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.kitchen.yml
41 lines (38 loc) · 815 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
---
driver:
name: vagrant
# without additional memory, ubuntu suites will fail
customize:
memory: 1024
provisioner:
name: chef_solo
attributes:
java:
jdk_version: 7
install_flavor: oracle
oracle:
accept_oracle_download_terms: true
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: 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'] %>