#################################### ## StarCluster Configuration File ## #################################### [global] DEFAULT_TEMPLATE=scicompcluster ENABLE_EXPERIMENTAL=True [aws info] # This is the AWS credentials section (required). # These settings apply to all clusters # replace these with your AWS keys AWS_ACCESS_KEY_ID = <<>> AWS_SECRET_ACCESS_KEY = <<>> ########################### ## Defining EC2 Keypairs ## ########################### [key aws-keypair] KEY_LOCATION=~/aws-keypair.pem # allow ssh access [permission ssh] PROTOCOL = tcp FROM_PORT = 22 TO_PORT = 22 ################################ ## Defining Cluster Templates ## ################################ [cluster scicompcluster] KEYNAME = aws-keypair CLUSTER_SIZE = 2 CLUSTER_SHELL = bash # this will set master image as well, since MASTER_IMAGE_ID is unspecified NODE_IMAGE_ID = ami-999d49f0 # this will set the node and master type, since MASTER_INSTANCE_TYPE is not specified NODE_INSTANCE_TYPE = m1.small PERMISSIONS = ssh VOLUMES=shared plugins = RSetup ############################# ## Configuring EBS Volumes ## ############################# [volume shared] VOLUME_ID = vol-xxxxxxxx MOUNT_PATH = /shared ##################################### ## Configuring StarCluster Plugins ## ##################################### [plugin RSetup] setup_class = unixRsetup.RSetup