-
Notifications
You must be signed in to change notification settings - Fork 5
/
hosts
65 lines (44 loc) · 925 Bytes
/
hosts
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
# This is the hosts file for Vagrant.
# Edit the IP addresses, but do not edit the names.
node1 ansible_ssh_host=127.0.0.1 ansible_ssh_port=2222 ansible_ssh_user=vagrant ansible_ssh_private_key_file=~/.vagrant.d/insecure_private_key
# Do not edit below this line unless you're pretty sure.
# N.B. - must set ansible_python_interpreter=python so that we do not default to /usr/bin/python
# this allows the playbook to work with virtualenv
local ansible_connection=local ansible_python_interpreter=python
localhost ansible_connection=local ansible_python_interpreter=python
[cluster]
node1
[jobtracker]
node1
[tasktracker]
node1
[resourcemanager]
node1
[historyserver]
node1
[webserver]
node1
[zookeepers]
node1
[cldb]
node1
[nfs]
node1
[fileserver]
node1
[mysql]
node1
[edge]
[impalaserver]
node1
[impalastore]
node1
[impalacatalog]
[hue]
node1
[hiveserver]
node1
[spark_master]
node1
[spark_slave]
node1