[
https://issues.apache.org/jira/browse/HADOOP-1635?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Tom White updated HADOOP-1635:
------------------------------
Resolution: Fixed
Status: Resolved (was: Patch Available)
I've just committed this. Thanks Stu!
> 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.