[ https://issues.apache.org/jira/browse/HADOOP-1635?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12514368 ]
Stu Hood commented on HADOOP-1635: ---------------------------------- Hudson was confused by a separate issue obviously... the EC2 code doesn't have any tests yet. > Keypair Name Hardcoded > ---------------------- > > Key: HADOOP-1635 > URL: https://issues.apache.org/jira/browse/HADOOP-1635 > Project: Hadoop > Issue Type: Bug > Components: contrib/ec2 > Affects Versions: 0.13.0, 0.13.1, 0.14.0, 0.15.0 > Reporter: Stu Hood > Priority: Minor > Fix For: 0.13.1, 0.14.0, 0.15.0 > > Attachments: hadoop-1635.patch > > > The keypair name is hardcoded as 'gsg-keypair' on the > """ > OUTPUT=`ec2-run-instances $AMI_IMAGE -k gsg-keypair` > """ > line in 'create-hadoop-image'. And again on the > """ > RUN_INSTANCES_OUTPUT=`ec2-run-instances $AMI_IMAGE -n $NO_INSTANCES -g $GROUP > -k $KEY_NAME -d "$NO_INSTANCES,$MASTER_HOST" | grep INSTANCE | awk '{print > $2}'` > """ > line in 'launch-hadoop-cluster'. > The lines should read > """ > OUTPUT=`ec2-run-instances $AMI_IMAGE -k $KEY_NAME` > """ > and > """ > RUN_INSTANCES_OUTPUT=`ec2-run-instances $AMI_IMAGE -n $NO_INSTANCES -g $GROUP > -k $KEY_NAME -d "$NO_INSTANCES,$MASTER_HOST" | grep INSTANCE | awk '{print > $2}'` > """ > respectively. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.