OpenStack Icehouse : Keystone 設定#22014/08/31 |
Keystone に ユーザやロール、OpenStack 各コンポーネントが利用するサービスを登録しておきます。
|
|
[1] | 環境変数を事前に読み込んでおく 「SERVICE_TOKEN」は keystone.conf で「admin_token」に設定した値 「SERVICE_ENDPOINT」は Keystoneサーバーのホスト名またはIPアドレス |
[root@dlp ~]# export SERVICE_TOKEN=admintoken [root@dlp ~]# export SERVICE_ENDPOINT=http://10.0.0.30:35357/v2.0/ |
[2] | テナント(グループ)を作成する |
# admin テナント作成 [root@dlp ~]# keystone tenant-create --name admin --description "Admin Tenant" --enabled true +-------------+----------------------------------+ | Property | Value | +-------------+----------------------------------+ | description | Admin Tenant | | enabled | True | | id | 2b658c66b2c647b7ad03083636d31464 | | name | admin | +-------------+----------------------------------+ # service テナント作成 [root@dlp ~]# keystone tenant-create --name service --description "Service Tenant" --enabled true +-------------+----------------------------------+ | Property | Value | +-------------+----------------------------------+ | description | Service Tenant | | enabled | True | | id | c57296226918412eaaa6cfe165ce1d96 | | name | service | +-------------+----------------------------------+ # 設定確認 [root@dlp ~]# keystone tenant-list +----------------------------------+---------+---------+ | id | name | enabled | +----------------------------------+---------+---------+ | 2b658c66b2c647b7ad03083636d31464 | admin | True | | c57296226918412eaaa6cfe165ce1d96 | service | True | +----------------------------------+---------+---------+ |
[3] | ロールを作成する |
# admin ロール作成 [root@dlp ~]# keystone role-create --name admin +----------+----------------------------------+ | Property | Value | +----------+----------------------------------+ | id | c9b5093fb48740bc93648e621a851138 | | name | admin | +----------+----------------------------------+ # Member ロール作成 [root@dlp ~]# keystone role-create --name Member +----------+----------------------------------+ | Property | Value | +----------+----------------------------------+ | id | 47a053c6a58f455384bfb4aee1000f82 | | name | Member | +----------+----------------------------------+ # 設定確認 [root@dlp ~]# keystone role-list +----------------------------------+----------+ | id | name | +----------------------------------+----------+ | 47a053c6a58f455384bfb4aee1000f82 | Member | | 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | | c9b5093fb48740bc93648e621a851138 | admin | +----------------------------------+----------+ |
[4] | ユーザーを作成する |
# admin ユーザー作成 (admin テナント所属) [root@dlp ~]# keystone user-create --tenant admin --name admin --pass adminpassword --enabled true +----------+----------------------------------+ | Property | Value | +----------+----------------------------------+ | email | | | enabled | True | | id | d754c4a4287f4636a7ca8820eb50481c | | name | admin | | tenantId | 2b658c66b2c647b7ad03083636d31464 | | username | admin | +----------+----------------------------------+ # admin ユーザーを adminロール に加える [root@dlp ~]# keystone user-role-add --user admin --tenant admin --role admin
# glance ユーザー作成 (service テナント所属) [root@dlp ~]# keystone user-create --tenant service --name glance --pass servicepassword --enabled true +----------+----------------------------------+ | Property | Value | +----------+----------------------------------+ | email | | | enabled | True | | id | 0487b13f40244680831177127369d2e9 | | name | glance | | tenantId | c57296226918412eaaa6cfe165ce1d96 | | username | glance | +----------+----------------------------------+ # glance ユーザーを adminロール に加える [root@dlp ~]# keystone user-role-add --user glance --tenant service --role admin
# nova ユーザー作成 (service テナント) [root@dlp ~]# keystone user-create --tenant service --name nova --pass servicepassword --enabled true +----------+----------------------------------+ | Property | Value | +----------+----------------------------------+ | email | | | enabled | True | | id | b671c7ecd7cc45abb353f98b7e895142 | | name | nova | | tenantId | c57296226918412eaaa6cfe165ce1d96 | | username | nova | +----------+----------------------------------+ # nova ユーザーを adminロール に加える [root@dlp ~]# keystone user-role-add --user nova --tenant service --role admin
# 設定確認 [root@dlp ~]# keystone user-list +----------------------------------+--------+---------+-------+ | id | name | enabled | email | +----------------------------------+--------+---------+-------+ | d754c4a4287f4636a7ca8820eb50481c | admin | True | | | 0487b13f40244680831177127369d2e9 | glance | True | | | b671c7ecd7cc45abb353f98b7e895142 | nova | True | | +----------------------------------+--------+---------+-------+ |
[5] | サービス用のエントリを作成する |
# keystone用サービスエントリ作成 [root@dlp ~]# keystone service-create --name=keystone --type=identity --description="Keystone Identity Service" +-------------+----------------------------------+ | Property | Value | +-------------+----------------------------------+ | description | Keystone Identity Service | | enabled | True | | id | 42aace5bb5e64ff3acb93471a8db2fa3 | | name | keystone | | type | identity | +-------------+----------------------------------+ # glance用サービスエントリ作成 [root@dlp ~]# keystone service-create --name=glance --type=image --description="Glance Image Service" +-------------+----------------------------------+ | Property | Value | +-------------+----------------------------------+ | description | Glance Image Service | | enabled | True | | id | cce11ba3a7d046bb9c0cf041af37d9f5 | | name | glance | | type | image | +-------------+----------------------------------+ # nova用サービスエントリ作成 [root@dlp ~]# keystone service-create --name=nova --type=compute --description="Nova Compute Service" +-------------+----------------------------------+ | Property | Value | +-------------+----------------------------------+ | description | Nova Compute Service | | enabled | True | | id | b91aef6fe34b4b49a634c3d95747eb57 | | name | nova | | type | compute | +-------------+----------------------------------+ # 設定確認 [root@dlp ~]# keystone service-list +----------------------------------+----------+----------+---------------------------+ | id | name | type | description | +----------------------------------+----------+----------+---------------------------+ | cce11ba3a7d046bb9c0cf041af37d9f5 | glance | image | Glance Image Service | | 42aace5bb5e64ff3acb93471a8db2fa3 | keystone | identity | Keystone Identity Service | | b91aef6fe34b4b49a634c3d95747eb57 | nova | compute | Nova Compute Service | +----------------------------------+----------+----------+---------------------------+ |
[6] | エンドポイントを作成する |
# 自ホストを定義しておく [root@dlp ~]# export my_host=10.0.0.30
# keystone 用エンドポイント作成 [root@dlp ~]# keystone endpoint-create --region RegionOne \ --service keystone \ --publicurl "http://$my_host:\$(public_port)s/v2.0" \ --internalurl "http://$my_host:\$(public_port)s/v2.0" \ --adminurl "http://$my_host:\$(admin_port)s/v2.0" +-------------+---------------------------------------+ | Property | Value | +-------------+---------------------------------------+ | adminurl | http://10.0.0.30:$(admin_port)s/v2.0 | | id | cc72c49ec5784deabac8f4e44b6ac000 | | internalurl | http://10.0.0.30:$(public_port)s/v2.0 | | publicurl | http://10.0.0.30:$(public_port)s/v2.0 | | region | RegionOne | | service_id | 42aace5bb5e64ff3acb93471a8db2fa3 | +-------------+---------------------------------------+ # glance 用エンドポイント作成 [root@dlp ~]# keystone endpoint-create --region RegionOne \ --service glance \ --publicurl "http://$my_host:9292/v1" \ --internalurl "http://$my_host:9292/v1" \ --adminurl "http://$my_host:9292/v1" +-------------+----------------------------------+ | Property | Value | +-------------+----------------------------------+ | adminurl | http://10.0.0.30:9292/v1 | | id | ec36057322c54800a3a369fc8d9703ba | | internalurl | http://10.0.0.30:9292/v1 | | publicurl | http://10.0.0.30:9292/v1 | | region | RegionOne | | service_id | cce11ba3a7d046bb9c0cf041af37d9f5 | +-------------+----------------------------------+ # nova 用エンドポイント作成 [root@dlp ~]# keystone endpoint-create --region RegionOne \ --service nova \ --publicurl "http://$my_host:\$(compute_port)s/v2/\$(tenant_id)s" \ --internalurl "http://$my_host:\$(compute_port)s/v2/\$(tenant_id)s" \ --adminurl "http://$my_host:\$(compute_port)s/v2/\$(tenant_id)s" +-------------+----------------------------------------------------+ | Property | Value | +-------------+----------------------------------------------------+ | adminurl | http://10.0.0.30:$(compute_port)s/v2/$(tenant_id)s | | id | 535046f3e765445faeba9c9573df526d | | internalurl | http://10.0.0.30:$(compute_port)s/v2/$(tenant_id)s | | publicurl | http://10.0.0.30:$(compute_port)s/v2/$(tenant_id)s | | region | RegionOne | | service_id | b91aef6fe34b4b49a634c3d95747eb57 | +-------------+----------------------------------------------------+ # 設定確認 [root@dlp ~]# keystone endpoint-list +----------------------------------+-----------+----------------------------------------------------+ | id | region | publicurl | +----------------------------------+-----------+----------------------------------------------------+ | 535046f3e765445faeba9c9573df526d | RegionOne | http://10.0.0.30:$(compute_port)s/v2/$(tenant_id)s | | cc72c49ec5784deabac8f4e44b6ac000 | RegionOne | http://10.0.0.30:$(public_port)s/v2.0 | | ec36057322c54800a3a369fc8d9703ba | RegionOne | http://10.0.0.30:9292/v1 | +----------------------------------+-----------+----------------------------------------------------+ +----------------------------------------------------+----------------------------------------------------+ | internalurl | adminurl | +----------------------------------------------------+----------------------------------------------------+ | http://10.0.0.30:$(compute_port)s/v2/$(tenant_id)s | http://10.0.0.30:$(compute_port)s/v2/$(tenant_id)s | | http://10.0.0.30:$(public_port)s/v2.0 | http://10.0.0.30:$(admin_port)s/v2.0 | | http://10.0.0.30:9292/v1 | http://10.0.0.30:9292/v1 | +----------------------------------------------------+----------------------------------------------------+ +----------------------------------+ | service_id | +----------------------------------+ | b91aef6fe34b4b49a634c3d95747eb57 | | 42aace5bb5e64ff3acb93471a8db2fa3 | | cce11ba3a7d046bb9c0cf041af37d9f5 | +----------------------------------+ |
Sponsored Link |