From Fedora Project Wiki

(move mkdir ~/novacreds from main setup)
mNo edit summary
 
(21 intermediate revisions by 7 users not shown)
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_create_OpenStack_user_project_and_network]]
Setup keystone credentials:
# Download an unpack your credentials:
  $> . ./keystonerc
  $> name=$USER
 
$> sudo nova-manage project zipfile $name $name
$> sudo chmod 600 nova.zip
$> sudo chown $name: nova.zip
$> mkdir ~/novacreds
$> cd ~/novacreds
$> unzip nova.zip
$> . ./novarc
|actions=
|actions=
Generate a key:
Add the key pair:
  $> ssh-keygen -f nova_key
  $> nova keypair-add nova_key > nova_key.priv
Add it:
 
$> euca-add-keypair nova_key > nova_key.priv
Change its permissions:
Change it permissions:
  $> chmod 600 nova_key.priv
  $> chmod 600 nova*
|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>
Line 27: Line 19:


[[Category:OpenStack Test Cases]]
[[Category:OpenStack Test Cases]]
[[Category:Cloud SIG]]

Latest revision as of 08:20, 18 September 2012

Description

Test adding an SSH key pair to an account.

Setup

Setup keystone credentials:

$> . ./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