OpenStack Bobcat : Configure CloudKitty2023/10/27 |
|
Install OpenStack Rating Service (CloudKitty).
This example is based on the environment like follows.
------------+--------------------------+--------------------------+------------
| | |
eth0|10.0.0.30 eth0|10.0.0.50 eth0|10.0.0.51
+-----------+-----------+ +-----------+-----------+ +-----------+-----------+
| [ dlp.srv.world ] | | [ network.srv.world ] | | [ node01.srv.world ] |
| (Control Node) | | (Network Node) | | (Compute Node) |
| | | | | |
| MariaDB RabbitMQ | | Open vSwitch | | Libvirt |
| Memcached Nginx | | Neutron Server | | Nova Compute |
| Keystone httpd | | OVN-Northd | | Open vSwitch |
| Glance Nova API | | Nginx iSCSI Target | | OVN Metadata Agent |
| Cinder API | | Cinder Volume | | OVN-Controller |
| | | Gnocchi httpd | | Ceilometer Compute |
| | | Ceilometer Central | | |
| | | CloudKitty API | | |
+-----------------------+ +-----------------------+ +-----------------------+
|
| [1] | Add users and others for CloudKitty in Keystone. |
|
# create [cloudkitty] user in [service] project [root@dlp ~(keystone)]# openstack user create --domain default --project service --password servicepassword cloudkitty
+---------------------+----------------------------------+
| Field | Value |
+---------------------+----------------------------------+
| default_project_id | 5d97881520b34e6bbf1f15e778c82fe4 |
| domain_id | default |
| enabled | True |
| id | eabc3bcfb0e84f09836979c1534facde |
| name | cloudkitty |
| options | {} |
| password_expires_at | None |
+---------------------+----------------------------------+
# add [cloudkitty] user in [admin] role [root@dlp ~(keystone)]# openstack role add --project service --user cloudkitty admin
# create [rating] role [root@dlp ~(keystone)]# openstack role create rating
+-------------+----------------------------------+
| Field | Value |
+-------------+----------------------------------+
| description | None |
| domain_id | None |
| id | f46c4b5c77ce4e57ad1be124037b1291 |
| name | rating |
| options | {} |
+-------------+----------------------------------+
# create service entry for [cloudkitty] [root@dlp ~(keystone)]# openstack service create --name cloudkitty --description "OpenStack Rating Service" rating +-------------+----------------------------------+ | Field | Value | +-------------+----------------------------------+ | description | OpenStack Rating Service | | enabled | True | | id | 7c92797b2ff84e938bf4939642c46ad8 | | name | cloudkitty | | type | rating | +-------------+----------------------------------+ # set CloudKitty API Host [root@dlp ~(keystone)]# export cloudkitty_api=network.srv.world
# create endpoint for [cloudkitty] (public) [root@dlp ~(keystone)]# openstack endpoint create --region RegionOne rating public http://$cloudkitty_api:8889 +--------------+----------------------------------+ | Field | Value | +--------------+----------------------------------+ | enabled | True | | id | 7de28fb9651e43ab851c7915804ced1b | | interface | public | | region | RegionOne | | region_id | RegionOne | | service_id | 7c92797b2ff84e938bf4939642c46ad8 | | service_name | cloudkitty | | service_type | rating | | url | http://network.srv.world:8889 | +--------------+----------------------------------+ # create endpoint for [cloudkitty] (internal) [root@dlp ~(keystone)]# openstack endpoint create --region RegionOne rating internal http://$cloudkitty_api:8889 +--------------+----------------------------------+ | Field | Value | +--------------+----------------------------------+ | enabled | True | | id | c9aa8ce5351a44b3bf5d96f4f03e8510 | | interface | internal | | region | RegionOne | | region_id | RegionOne | | service_id | 7c92797b2ff84e938bf4939642c46ad8 | | service_name | cloudkitty | | service_type | rating | | url | http://network.srv.world:8889 | +--------------+----------------------------------+ # create endpoint for [cloudkitty] (admin) [root@dlp ~(keystone)]# openstack endpoint create --region RegionOne rating admin http://$cloudkitty_api:8889 +--------------+----------------------------------+ | Field | Value | +--------------+----------------------------------+ | enabled | True | | id | 7e30ed4f54454dbcb09a2d98a45bea58 | | interface | admin | | region | RegionOne | | region_id | RegionOne | | service_id | 7c92797b2ff84e938bf4939642c46ad8 | | service_name | cloudkitty | | service_type | rating | | url | http://network.srv.world:8889 | +--------------+----------------------------------+ |
| [2] | Add a User and Database on MariaDB for CloudKitty. |
|
[root@dlp ~(keystone)]# mysql Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 20135 Server version: 10.5.16-MariaDB MariaDB Server Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. MariaDB [(none)]> create database cloudkitty; Query OK, 1 row affected (0.00 sec) MariaDB [(none)]> grant all privileges on cloudkitty.* to cloudkitty@'localhost' identified by 'password'; Query OK, 0 rows affected (0.00 sec) MariaDB [(none)]> grant all privileges on cloudkitty.* to cloudkitty@'%' identified by 'password'; Query OK, 0 rows affected (0.00 sec) MariaDB [(none)]> exit Bye |
| [3] | Install CloudKitty on Network Node. |
|
[root@network ~]# dnf --enablerepo=centos-openstack-bobcat,epel,crb -y install openstack-cloudkitty-api openstack-cloudkitty-processor python3-cloudkittyclient
|
| [4] | Configure CloudKitty. |
|
[root@network ~]# mv /etc/cloudkitty/cloudkitty.conf /etc/cloudkitty/cloudkitty.conf.org
[root@network ~]#
vi /etc/cloudkitty/cloudkitty.conf # create new [DEFAULT] log_dir = /var/log/cloudkitty transport_url = rabbit://openstack:password@dlp.srv.world auth_strategy = keystone [collect] collector = gnocchi # set period for rating # default is 3600 (sec) # * following short period is for testing one period = 600 metrics_conf = /etc/cloudkitty/metrics.yml [collector_gnocchi] auth_section = keystone_authtoken region_name = RegionOne # MariaDB connection info [database] connection = mysql+pymysql://cloudkitty:password@dlp.srv.world/cloudkitty [fetcher] backend = gnocchi [fetcher_gnocchi] auth_section = keystone_authtoken region_name = RegionOne [fetcher_keystone] keystone_version = 3 auth_section = keystone_authtoken region_name = RegionOne # Keystone auth info [keystone_authtoken] www_authenticate_uri = https://dlp.srv.world:5000/v3 auth_url = https://dlp.srv.world:5000/v3 memcached_servers = dlp.srv.world:11211 auth_type = password project_domain_name = default user_domain_name = default project_name = service username = cloudkitty password = servicepassword region_name = RegionOne service_token_roles_required = true # if using self-signed certs on Apache2 Keystone, turn to [true] insecure = false [oslo_messaging_notifications] driver = messagingv2 transport_url = rabbit://openstack:password@dlp.srv.world [storage] backend = sqlalchemy version = 1 # MariaDB connection info [orchestrator] coordination_url = mysql://cloudkitty:password@dlp.srv.world/cloudkitty mv /etc/cloudkitty/metrics.yml /etc/cloudkitty/metrics.yml.org
[root@network ~]#
vi /etc/cloudkitty/metrics.yml # create new
metrics:
cpu:
unit: instance
alt_name: instance
groupby:
- id
- user_id
- project_id
metadata:
- flavor_name
- flavor_id
- vcpus
mutate: NUMBOOL
extra_args:
aggregation_method: mean
resource_type: instance
force_granularity: 300
volume.size:
unit: GiB
groupby:
- id
- user_id
- project_id
metadata:
- volume_type
extra_args:
aggregation_method: mean
resource_type: volume
force_granularity: 300
[root@network ~]#
vi /etc/httpd/conf.d/10-cloudkitty_wsgi.conf # create new
Listen 8889
<VirtualHost *:8889>
<Directory /usr/bin>
AllowOverride None
Require all granted
</Directory>
CustomLog /var/log/httpd/cloudkitty_wsgi_access.log combined
ErrorLog /var/log/httpd/cloudkitty_wsgi_error.log
WSGIApplicationGroup %{GLOBAL}
WSGIDaemonProcess cloudkitty display-name=cloudkitty_wsgi user=cloudkitty group=cloudkitty processes=6 threads=6
WSGIProcessGroup cloudkitty
WSGIScriptAlias / /usr/bin/cloudkitty-api
</VirtualHost>
pip3 install DateTimeRange [root@network ~]# chmod 640 /etc/cloudkitty/{cloudkitty.conf,metrics.yml} [root@network ~]# chgrp cloudkitty /etc/cloudkitty/{cloudkitty.conf,metrics.yml} [root@network ~]# su -s /bin/bash cloudkitty -c "cloudkitty-dbsync upgrade" [root@network ~]# su -s /bin/bash cloudkitty -c "cloudkitty-storage-init" [root@network ~]# systemctl restart httpd [root@network ~]# systemctl enable --now cloudkitty-processor |
| [5] | If Firewalld is running, allow service port. |
|
[root@network ~]# firewall-cmd --add-port=8889/tcp success [root@network ~]# firewall-cmd --runtime-to-permanent success |
| [6] | Verify state on Control Node. |
|
[root@dlp ~(keystone)]# dnf --enablerepo=centos-openstack-bobcat,epel,crb -y install python3-cloudkittyclient [root@dlp ~(keystone)]# openstack rating summary get +----------------------------------+---------------+------+---------------------+---------------------+ | Tenant ID | Resource Type | Rate | Begin Time | End Time | +----------------------------------+---------------+------+---------------------+---------------------+ | d9d13fdc603c42f69a0ea034b64a3cdb | ALL | 0 | 2023-10-01T00:00:00 | 2023-11-01T00:00:00 | +----------------------------------+---------------+------+---------------------+---------------------+ |
| Sponsored Link |
|
|