-
Notifications
You must be signed in to change notification settings - Fork 0
/
cluster.yaml
49 lines (47 loc) · 1.21 KB
/
cluster.yaml
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
users:
# just place your ~/.ssh/id_*.pub key contents here
# if you dont have such a public key, run `ssh-keygen`
name: "ssh-rsa AAAAB3Oq8xNGXoXwvif...OGUef4dr3 [email protected]"
base-conf:
# default image, amazon linux
machine-image: ami-a6b0b7bb
subnet: subnet-71b36f0a
security-group: sg-baac24d3
vpc: vpc-6865cc01
region: eu-central-1
instance-type: t2.micro
app-user: histograph
hosts:
api:
ip-address: 10.0.0.51
instance-type: t2.small
app-user: histograph
scripts:
- install-nodejs-repository.sh
- library-functions.sh
- install-histograph-api.sh
core:
ip-address: 10.0.0.52
instance-type: t2.micro
app-user: histograph
scripts:
- install-nodejs-repository.sh
- library-functions.sh
- install-histograph-core.sh
redis:
ip-address: 10.0.0.53
instance-type: t2.micro
scripts:
- install-redis.sh
neo4j:
ip-address: 10.0.0.54
instance-type: m3.large
machine-image: ami-b092aaad # debian 8 (jessy)
scripts:
- install-neo4j.sh
elasticsearch:
ip-address: 10.0.0.55
instance-type: m3.xlarge
machine-image: ami-b092aaad # debian 8 (jessy)
scripts:
- install-elasticsearch.sh