-
Notifications
You must be signed in to change notification settings - Fork 1
/
.kitchen.yml
59 lines (54 loc) · 2.38 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
---
driver:
name: vagrant
provisioner:
name: chef_zero
product_name: chef
product_version: 14
channel: stable
install_strategy: once
always_update_cookbooks: true
log_level: info
client_rb:
chef_license: accept
verifier:
name: inspec
platforms:
- name: centos-7
suites:
- name: default
driver:
vm_hostname: ambari-server
customize:
memory: 10240
cpus: 2
natdnshostresolver1: "on"
network:
- ["forwarded_port", {guest: 3000, host: 3000, auto_correct: true}] # ambari metrics grafana
- ["forwarded_port", {guest: 8020, host: 8020, auto_correct: true}] # hdfs namenode metadata service
- ["forwarded_port", {guest: 8042, host: 8042, auto_correct: true}] # yarn nodemanager rest api
- ["forwarded_port", {guest: 8080, host: 8080, auto_correct: true}] # ambari server http
- ["forwarded_port", {guest: 8088, host: 8088, auto_correct: true}] # yarn resourcemanager ui
- ["forwarded_port", {guest: 8443, host: 8443, auto_correct: true}] # ambari server https
- ["forwarded_port", {guest: 8744, host: 8744, auto_correct: true}] # storm web ui
- ["forwarded_port", {guest: 8886, host: 8886, auto_correct: true}] # log search solr admin ui
- ["forwarded_port", {guest: 9060, host: 9060, auto_correct: true}] # smartsense explorer
- ["forwarded_port", {guest: 11000, host: 11000, auto_correct: true}] # oozie web ui
- ["forwarded_port", {guest: 18080, host: 18080, auto_correct: true}] # spark history server ui
- ["forwarded_port", {guest: 19888, host: 19888, auto_correct: true}] # mapreduce job history ui
- ["forwarded_port", {guest: 50070, host: 50070, auto_correct: true}] # hdfs namenode ui
- ["forwarded_port", {guest: 50111, host: 50111, auto_correct: true}] # hive webhcat
- ["forwarded_port", {guest: 61888, host: 61888, auto_correct: true}] # log search http ui
- ["forwarded_port", {guest: 61889, host: 61889, auto_correct: true}] # log search https ui
run_list:
- recipe[ambari-chef::ambari_server_prerequisites]
- recipe[ambari-chef::ambari_server]
- recipe[hdp-chef::hdp]
- recipe[ambari-chef::ambari_cluster]
verifier:
inspec_tests:
- test/integration/default
attributes:
hw:
hdp:
version: '3.1.4'