QA:Testcase add SSH keypair to OpenStack
From FedoraProject
(Difference between revisions)
(no need for unzip anymore; we're not using nova-manage project zipfile) |
m (Ensure that nova configuration file uses keystone) |
||
| Line 14: | Line 14: | ||
EOF | EOF | ||
$> . ./novarc | $> . ./novarc | ||
| + | # Update /etc/nova/api-paste.ini to work with keystone (Select the keystone option in [pipeline:ec2cloud]) and restart nova-api | ||
|actions= | |actions= | ||
Add the key pair: | Add the key pair: | ||
Revision as of 13:48, 8 March 2012
Contents |
Description
Test adding an SSH key pair to an account.
Setup
- Follow QA:Testcase_start_OpenStack_Nova_services.
- Set up a novarc file with the EC2 credentials of the admin user in keystone:
$> . ./keystonerc
$> USER_ID=$(keystone user-list | awk '/admin / {print $2}')
$> ACCESS_KEY=$(keystone ec2-credentials-list --user $USER_ID | awk '/admin / {print $4}')
$> SECRET_KEY=$(keystone ec2-credentials-list --user $USER_ID | awk '/admin / {print $6}')
$> cat > novarc <<EOF
export EC2_URL=http://localhost:8773/services/Cloud
export EC2_ACCESS_KEY=$ACCESS_KEY
export EC2_SECRET_KEY=$SECRET_KEY
EOF
$> . ./novarc
- Update /etc/nova/api-paste.ini to work with keystone (Select the keystone option in [pipeline:ec2cloud]) and restart nova-api
How to test
Add the key pair:
$> euca-add-keypair nova_key > nova_key.priv
Change its permissions:
$> chmod 600 nova_key.priv
Expected Results
- Check that the key is registered:
$> euca-describe-keypairs
- Check that
nova_key.privactually contains a key - Check for errors in
/var/log/nova/*.log