You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GRANT ALL PRIVILEGES ON glance.* TO 'glance'@'localhost' identified by 'password123';
GRANT ALL PRIVILEGES ON glance.* TO 'glance'@'%' identified by 'password123';
exit
Create openstack objects
Source .adminrc
source .adminrc
Create service and creds
Create glance user and add role:
openstack user create --domain default --password password123 glance
openstack role add --project service --user glance admin
Create glance service:
openstack service create --name glance \
--description "OpenStack Image" image
Create service API endpoints:
foriin public internal admin; \
do openstack endpoint create --region RegionOne \
image $i http://controller:9292; \
done