-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig
70 lines (50 loc) · 1.44 KB
/
config
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
66
67
68
69
####################################
## StarCluster Configuration File ##
####################################
#I have removed many of the comments from this file
#to ease readability, but I advise leaving the comments
#in your actual config file.
[global]
DEFAULT_TEMPLATE = base
#############################################
## AWS Credentials and Connection Settings ##
#############################################
[aws info]
AWS_ACCESS_KEY_ID = #INSERT ID
AWS_SECRET_ACCESS_KEY = #INSERT KEY
AWS_USER_ID= #INSERT ACCT NUMBER
###########################
## Defining EC2 Keypairs ##
###########################
[key aws_key]
KEY_LOCATION=~/.ssh/aws_key.rsa
################################
## Defining Cluster Templates ##
################################
[cluster base]
KEYNAME = aws_key
CLUSTER_SIZE = 1
CLUSTER_USER = john
CLUSTER_SHELL = bash
NODE_IMAGE_ID = ami-999d49f0
NODE_INSTANCE_TYPE = m1.xlarge
VOLUMES = data
PLUGINS = ipcluster
###########################################
## Defining Additional Cluster Templates ##
###########################################
[cluster basecluster]
EXTENDS = base
CLUSTER_SIZE = 2
#############################
## Configuring EBS Volumes ##
#############################
[volume data]
VOLUME_ID = #INSERT VOLUME ID
MOUNT_PATH = /root/data/
######################
## Built-in Plugins ##
######################
[plugin ipcluster]
SETUP_CLASS = starcluster.plugins.ipcluster.IPCluster
ENABLE_NOTEBOOK = True