From Fedora Project Wiki

No edit summary
(remove from cloud SIG category)
 
(9 intermediate revisions by 5 users not shown)
Line 3: Line 3:
|setup=Follow [[QA:Testcase_setup_OpenStack_Nova]].
|setup=Follow [[QA:Testcase_setup_OpenStack_Nova]].
|actions=
|actions=
* Change glance configuration to use keystone:
$> sudo openstack-config-set /etc/glance/glance-api.conf paste_deploy flavor keystone
$> sudo openstack-config-set /etc/glance/glance-api-paste.ini filter:authtoken admin_tenant_name service
$> sudo openstack-config-set /etc/glance/glance-api-paste.ini filter:authtoken admin_user glance
$> sudo openstack-config-set /etc/glance/glance-api-paste.ini filter:authtoken admin_password servicepass
$> sudo openstack-config-set /etc/glance/glance-registry.conf paste_deploy flavor keystone
$> sudo openstack-config-set /etc/glance/glance-registry-paste.ini filter:authtoken admin_tenant_name service
$> sudo openstack-config-set /etc/glance/glance-registry-paste.ini filter:authtoken admin_user glance
$> sudo openstack-config-set /etc/glance/glance-registry-paste.ini filter:authtoken admin_password servicepass
Start and enable the Glance API and registry services:
Start and enable the Glance API and registry services:
  $> for svc in api registry; do sudo systemctl start openstack-glance-$svc.service; done
  $> for svc in api registry; do sudo systemctl start openstack-glance-$svc.service; done
  $> for svc in api registry; do sudo systemctl enable openstack-glance-$svc.service; done
  $> for svc in api registry; do sudo systemctl enable openstack-glance-$svc.service; done
|results=
|results=
Check that the services are running:
Check that the services are running:
  $> for svc in api registry; do sudo service openstack-glance-$svc status; done
  $> for svc in api registry; do systemctl status openstack-glance-$svc.service; done
 
And check for errors in the logs:
And check for errors in the logs:
  $> grep -i error /var/log/glance/*.log
  $> grep -i error /var/log/glance/*.log
Check that the CLI can contact the API service:
 
Check that the glance CLI works:
  $> glance index
  $> glance index
{{admon/note|Note|If everything is working as expected, you will get no output from this command, assuming that you have just installed Glance and have not yet added any images.}}
 
}}
}}


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

Latest revision as of 06:16, 25 April 2012

Description

Test that the Glance API and registry services start without error.

Setup

Follow QA:Testcase_setup_OpenStack_Nova.

How to test

  • Change glance configuration to use keystone:
$> sudo openstack-config-set /etc/glance/glance-api.conf paste_deploy flavor keystone
$> sudo openstack-config-set /etc/glance/glance-api-paste.ini filter:authtoken admin_tenant_name service
$> sudo openstack-config-set /etc/glance/glance-api-paste.ini filter:authtoken admin_user glance
$> sudo openstack-config-set /etc/glance/glance-api-paste.ini filter:authtoken admin_password servicepass
$> sudo openstack-config-set /etc/glance/glance-registry.conf paste_deploy flavor keystone
$> sudo openstack-config-set /etc/glance/glance-registry-paste.ini filter:authtoken admin_tenant_name service
$> sudo openstack-config-set /etc/glance/glance-registry-paste.ini filter:authtoken admin_user glance
$> sudo openstack-config-set /etc/glance/glance-registry-paste.ini filter:authtoken admin_password servicepass

Start and enable the Glance API and registry services:

$> for svc in api registry; do sudo systemctl start openstack-glance-$svc.service; done
$> for svc in api registry; do sudo systemctl enable openstack-glance-$svc.service; done

Expected Results

Check that the services are running:

$> for svc in api registry; do systemctl status openstack-glance-$svc.service; done

And check for errors in the logs:

$> grep -i error /var/log/glance/*.log

Check that the glance CLI works:

$> glance index