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 placement.* TO 'placement'@'localhost' identified by 'password123';
GRANT ALL PRIVILEGES ON placement.* TO 'placement'@'%' identified by 'password123';
exit
Create openstack objects
Source .adminrc
source .adminrc
Create service and creds
Create placement user and add role:
openstack user create --domain default --password password123 placement
openstack role add --project service --user placement admin
Create placement service:
openstack service create --name placement \
--description "Placement API" placement
Create service API endpoints:
foriin public internal admin; \
do openstack endpoint create --region RegionOne \
placement $i http://controller:8778; \
done
su -s /bin/sh -c "placement-manage db sync" placement
Restart web server:
service apache2 restart
Verify ops
Source .adminrc
source .adminrc
Perform status checks:
placement-status upgrade check
openstack --os-placement-api-version 1.2 resource class list --sort-column name
openstack --os-placement-api-version 1.6 trait list --sort-column name