-
Notifications
You must be signed in to change notification settings - Fork 3
/
aws-cluster.json
40 lines (39 loc) · 1.05 KB
/
aws-cluster.json
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
{
"masterFQDNs": ["TODO: external ELB FQDN and (optionally) domain name to refer to it"],
"masterLoadBalancerAddress": "TODO: internal ELB FQDN",
"sshLoginKey": "~/.ssh/id_rsa",
"masters": [
{
"nodeName": "ip-10-1-0-10.ec2.internal",
"privateIP": "10.1.0.10",
"publicIP": "TODO"
},
{
"nodeName": "ip-10-1-1-10.ec2.internal",
"privateIP": "10.1.1.10",
"publicIP": "TODO"
},
{
"nodeName": "ip-10-1-2-10.ec2.internal",
"privateIP": "10.1.2.10",
"publicIP": "TODO"
}
],
"workers": [
{
"nodeName": "ip-10-1-0-40.ec2.internal",
"privateIP": "10.1.0.40",
"publicIP": "TODO"
},
{
"nodeName": "ip-10-1-1-40.ec2.internal",
"privateIP": "10.1.1.40",
"publicIP": "TODO"
}
],
"hooks": {
"preinstall": "aws.sh.j2",
"cloudProvider": "aws",
"cloudProviderConfig": null
}
}