From Fedora Project Wiki

No edit summary
No edit summary
Line 2: Line 2:
|description=Test adding an SSH key pair to an account.
|description=Test adding an SSH key pair to an account.
|setup=
|setup=
# Follow [[QA:Testcase_start_OpenStack_Nova_services]].
# Set up a novarc file with the EC2 credentials of the admin user in keystone:
  $> . ./keystonerc
  $> . ./keystonerc
$> <nowiki>USER_ID=$(keystone user-list | awk '/admin / {print $2}')</nowiki>
$> <nowiki>ACCESS_KEY=$(keystone ec2-credentials-list --user-id $USER_ID | awk '/admin / {print $4}')</nowiki>
$> <nowiki>SECRET_KEY=$(keystone ec2-credentials-list --user-id $USER_ID | awk '/admin / {print $6}')</nowiki>
$> cat > novarc <<EOF
export EC2_URL=http://localhost:8773/services/Cloud
export EC2_ACCESS_KEY=$ACCESS_KEY
export EC2_SECRET_KEY=$SECRET_KEY
EOF
$> chmod 600 novarc
$> . ./novarc


|actions=
|actions=
Add the key pair:
Add the key pair:
  $> euca-add-keypair nova_key > nova_key.priv
  $> nova keypair-add nova_key > nova_key.priv
 
Change its permissions:
Change its permissions:
  $> chmod 600 nova_key.priv
  $> chmod 600 nova_key.priv
|results=
|results=
* Check that the key is registered:
* Check that the key is registered:
  $> euca-describe-keypairs
  $> nova keypair-list
* Check that <code>nova_key.priv</code> actually contains a key
* Check that <code>nova_key.priv</code> actually contains a key
* Check for errors in <code>/var/log/nova/*.log</code>
* Check for errors in <code>/var/log/nova/*.log</code>

Revision as of 08:17, 18 September 2012

Description

Test adding an SSH key pair to an account.

Setup

$> . ./keystonerc

How to test

Add the key pair:

$> nova keypair-add nova_key > nova_key.priv

Change its permissions:

$> chmod 600 nova_key.priv

Expected Results

  • Check that the key is registered:
$> nova keypair-list
  • Check that nova_key.priv actually contains a key
  • Check for errors in /var/log/nova/*.log