Update multi-regions.rst

Add ceilometer heat multi-regions content in multi-regions.rst

Change-Id: I9bc3d2a3ff25cee2d5e6d5318cffe6d65e4220b6
This commit is contained in:
zhubingbing 2017-04-16 13:35:31 +08:00
parent 5869030d7f
commit e8ab455182
1 changed files with 26 additions and 3 deletions

View File

@ -67,8 +67,8 @@ the value of ``kolla_internal_fqdn`` in RegionOne:
kolla_internal_fqdn_r1: 10.10.10.254
keystone_admin_url: "{{ admin_protocol }}://{{ kolla_internal_fqdn_r1 }}:{{ keystone_admin_port }}/v3"
keystone_internal_url: "{{ internal_protocol }}://{{ kolla_internal_fqdn_r1 }}:{{ keystone_public_port }}/v3"
keystone_admin_url: "{{ admin_protocol }}://{{ kolla_internal_fqdn_r1 }}:{{ keystone_admin_port }}"
keystone_internal_url: "{{ internal_protocol }}://{{ kolla_internal_fqdn_r1 }}:{{ keystone_public_port }}"
openstack_auth:
auth_url: "{{ admin_protocol }}://{{ kolla_internal_fqdn_r1 }}:{{ keystone_admin_port }}"
@ -76,7 +76,7 @@ the value of ``kolla_internal_fqdn`` in RegionOne:
password: "{{ keystone_admin_password }}"
project_name: "admin"
Configuration files of nova/neutron/glance... have to be updated to
Configuration files of cinder,nova,neutron,glance... have to be updated to
contact RegionOne's Keystone. Fortunately, Kolla offers to override all
configuration files at the same time thanks to the
``node_custom_config`` variable (see :ref:`service-config`). This
@ -97,6 +97,29 @@ directory, a ``nova.conf`` file with below content:
[placement]
auth_url = {{ keystone_admin_url }}
The Heat section inside the configuration file also
has to be updated to contact RegionOne's Keystone. So create, in the same
directory, a ``heat.conf`` file with below content:
::
[trustee]
auth_uri = {{ keystone_internal_url }}
auth_url = {{ keystone_internal_url }}
[ec2authtoken]
auth_uri = {{ keystone_internal_url }}
[clients_keystone]
auth_uri = {{ keystone_internal_url }}
The Ceilometer section inside the configuration file also
has to be updated to contact RegionOne's Keystone. So create, in the same
directory, a ``ceilometer.conf`` file with below content:
::
[service_credentials]
auth_url = {{ keystone_internal_url }}
And link the directory that contains these files into the
``/etc/kolla/globals.yml``: