From 8c6d8551bbcd8d0f60af56f986ecd5323d508e3b Mon Sep 17 00:00:00 2001 From: gord chung Date: Mon, 27 Feb 2017 16:21:39 +0000 Subject: [PATCH] include gnocchi+keystone instructions in install guide ceilometer needs gnocchi to be registered in keystone to work Closes-Bug: #1665348 Change-Id: Ie1986861b7d6812a52951f89aa406e3e7bec87aa --- .../source/install-base-config-common.inc | 29 ++++++- .../source/install-base-prereq-common.inc | 86 +++++++++++++++++++ 2 files changed, 111 insertions(+), 4 deletions(-) diff --git a/install-guide/source/install-base-config-common.inc b/install-guide/source/install-base-config-common.inc index d0476326..8a6993fd 100644 --- a/install-guide/source/install-base-config-common.inc +++ b/install-guide/source/install-base-config-common.inc @@ -42,9 +42,30 @@ Replace ``CEILOMETER_PASS`` with the password you chose for the ``ceilometer`` user in the Identity service. - * Create Ceilometer resources in Gnocchi. Gnocchi should be running by this - stage: +3. Edit the ``/etc/gnocchi/gnocchi.conf`` file and add Keystone options: - .. code-block:: console + * In the ``[service_credentials]`` section, configure service credentials: - # ceilometer-upgrade --skip-metering-database + .. code-block:: ini + + [service_credentials] + ... + auth_type = password + auth_url = http://controller:5000/v3 + project_domain_id = default + user_domain_id = default + project_name = service + username = gnocchi + password = GNOCCHI_PASS + interface = internalURL + region_name = RegionOne + + Replace ``GNOCCHI_PASS`` with the password you chose for + the ``gnocchi`` user in the Identity service. + +4. Create Ceilometer resources in Gnocchi. Gnocchi should be running by this + stage: + + .. code-block:: console + + # ceilometer-upgrade --skip-metering-database diff --git a/install-guide/source/install-base-prereq-common.inc b/install-guide/source/install-base-prereq-common.inc index 9424c380..debe072a 100644 --- a/install-guide/source/install-base-prereq-common.inc +++ b/install-guide/source/install-base-prereq-common.inc @@ -48,3 +48,89 @@ | name | ceilometer | | type | metering | +-------------+----------------------------------+ + +3. Register Gnocchi service in Keystone: + + * Create the ``gnocchi`` user: + + .. code-block:: console + + $ openstack user create --domain default --password-prompt gnocchi + User Password: + Repeat User Password: + +-----------+----------------------------------+ + | Field | Value | + +-----------+----------------------------------+ + | domain_id | e0353a670a9e496da891347c589539e9 | + | enabled | True | + | id | 8bacd064f6434ef2b6bbfbedb79b0318 | + | name | gnocchi | + +-----------+----------------------------------+ + + * Create the ``gnocchi`` service entity: + + .. code-block:: console + + $ openstack service create --name gnocchi \ + --description "Metric Service" metric + +-------------+----------------------------------+ + | Field | Value | + +-------------+----------------------------------+ + | description | Metric Service | + | enabled | True | + | id | 205978b411674e5a9990428f81d69384 | + | name | gnocchi | + | type | metric | + +-------------+----------------------------------+ + + * Create the Metric service API endpoints: + + .. code-block:: console + + $ openstack endpoint create --region RegionOne \ + metric public http://controller:8041 + +--------------+----------------------------------+ + | Field | Value | + +--------------+----------------------------------+ + | enabled | True | + | id | b808b67b848d443e9eaaa5e5d796970c | + | interface | public | + | region | RegionOne | + | region_id | RegionOne | + | service_id | 205978b411674e5a9990428f81d69384 | + | service_name | gnocchi | + | service_type | metric | + | url | http://controller:8041 | + +--------------+----------------------------------+ + + $ openstack endpoint create --region RegionOne \ + metric internal http://controller:8041 + +--------------+----------------------------------+ + | Field | Value | + +--------------+----------------------------------+ + | enabled | True | + | id | c7009b1c2ee54b71b771fa3d0ae4f948 | + | interface | internal | + | region | RegionOne | + | region_id | RegionOne | + | service_id | 205978b411674e5a9990428f81d69384 | + | service_name | gnocchi | + | service_type | metric | + | url | http://controller:8041 | + +--------------+----------------------------------+ + + $ openstack endpoint create --region RegionOne \ + metric admin http://controller:8041 + +--------------+----------------------------------+ + | Field | Value | + +--------------+----------------------------------+ + | enabled | True | + | id | b2c00566d0604551b5fe1540c699db3d | + | interface | admin | + | region | RegionOne | + | region_id | RegionOne | + | service_id | 205978b411674e5a9990428f81d69384 | + | service_name | gnocchi | + | service_type | metric | + | url | http://controller:8041 | + +--------------+----------------------------------+