-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.kitchen.yml
61 lines (57 loc) · 1.77 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
---
driver:
name: vagrant
driver_config:
customize:
memory: 1024
cpus: 2
# Configure network interface to use hosts DNS resolver. Doing this makes installing Gems and other network tasks significantly faster.
natdnsproxy1: 'off'
natdnshostresolver1: 'off'
provisioner:
name: chef_solo
platforms:
- name: centos-6.7
- name: ubuntu-14.04
suites:
- name: default
run_list:
# We only include apt because of an issue installing java where ubuntu
# requires an apt-get update in order to successfully run
- recipe[apt]
- recipe[confluent_tester]
- recipe[confluent::zookeeper]
- recipe[confluent::kafka]
- recipe[confluent::kafka-rest]
- recipe[confluent::schema-registry]
- recipe[confluent::kafka-connect]
attributes:
confluent:
kafka:
brokers:
- default-ubuntu-1404
- default-centos-67
zookeepers:
- localhost:2181
server.properties:
log.dirs: /tmp/kafka-logs
kafka-rest:
kafka-rest.properties:
zookeeper.connect: localhost:2181
bootstrap.servers: localhost:9092
schema-registry:
schema-registry.properties:
kafkastore.connection.url: localhost:2181
kafka-connect:
jar_urls:
- http://search.maven.org/remotecontent?filepath=org/apache/jclouds/chef/chef-project/1.8.1/chef-project-1.8.1-tests.jar
properties_files:
test_file.properties:
test.property: test
log4j.properties:
log4j.test.property: test
worker_properties_file_name: test_worker.properties
worker.properties:
worker_test.property: test
java:
jdk_version: 8