We eagerly announce the release of: cloudkitty 22.0.0 This release is part of the epoxy release series. The source is available from: https://opendev.org/openstack/cloudkitty Download the package from: https://pypi.org/project/cloudkitty Please report issues through: https://storyboard.openstack.org/#!/project/openstack/cloudkitty For more details, please see below. 22.0.0 ^^^^^^ New Features ************ * The CloudKitty policies implemented the scope concept and new default roles ("admin", "member", and "reader") provided by keystone. Upgrade Notes ************* * All the policies implement the "scope_type" and new defaults. * **Scope** Each policy is protected with "project" "scope_type". * **New Defaults (Admin, Member and Reader)** Policies are default to Admin, Member and Reader roles. Old roles are also supported. There is no change in the legacy admin access. Changes in cloudkitty 21.0.0..22.0.0 ------------------------------------ 0f0754d Add secure RBAC role as new default afa6f98 Allow Multiple Ratings for the same Metric on Prometheus 676fd7e Add handling to metric collect error 75d672b Remove set_state function and its references d3d43a3 Replace own hacking checks by built-on ones 6f8d4e1 Drop Python 3.8 support 958b78b Remove remaining use of iteritems d6154ab Update gate jobs as per the 2025.1 cycle testing runtime e22b148 Remove default override for config options policy_file e51ffa9 Drop workaround for old setuptools 9313b93 reno: Update master for unmaintained/2023.1 ee1f5fe Remove unused PrometheusClient method dd63693 Bump hacking to 7.0.x a374f18 Un-deprecate Elasticsearch 313ef8b Fix test suite with Python 3.12 3d55cee Correct release note formatting 0bcde58 Add opensearch/elasticsearch datastreams support accee57 Ensure [fetcher_prometheus] prometheus_password is hidden 819d2d1 Update master for stable/2024.2 1ea0e3e Remove import of deprecated module Diffstat (except docs and test files) ------------------------------------- .zuul.yaml | 16 ++- HACKING.rst | 3 - cloudkitty/collector/__init__.py | 34 ++++++- cloudkitty/collector/gnocchi.py | 47 ++------- cloudkitty/collector/prometheus.py | 44 ++++++--- cloudkitty/common/defaults.py | 8 -- cloudkitty/common/policies/base.py | 45 ++++++++- cloudkitty/common/policies/v1/collector.py | 15 ++- cloudkitty/common/policies/v1/info.py | 15 ++- cloudkitty/common/policies/v1/rating.py | 15 ++- cloudkitty/common/policies/v1/report.py | 13 ++- cloudkitty/common/policies/v1/storage.py | 5 +- cloudkitty/common/policies/v2/dataframes.py | 8 +- cloudkitty/common/policies/v2/rating.py | 9 +- cloudkitty/common/policies/v2/scope.py | 12 ++- cloudkitty/common/policies/v2/summary.py | 5 +- cloudkitty/common/policies/v2/tasks.py | 6 +- cloudkitty/common/policy.py | 6 -- cloudkitty/common/prometheus_client.py | 19 ---- cloudkitty/fetcher/prometheus.py | 5 +- cloudkitty/hacking/checks.py | 36 ------- cloudkitty/orchestrator.py | 14 ++- cloudkitty/storage/v2/elasticsearch/__init__.py | 4 + cloudkitty/storage/v2/elasticsearch/client.py | 51 +++++++--- cloudkitty/storage/v2/opensearch/__init__.py | 3 + cloudkitty/storage/v2/opensearch/client.py | 44 ++++++--- cloudkitty/storage_state/__init__.py | 13 --- cloudkitty/utils/__init__.py | 12 +-- cloudkitty/utils/validation.py | 5 +- cloudkitty/writer/csv_base.py | 2 +- devstack/plugin.sh | 102 +++++-------------- devstack/settings | 5 +- ...earch-datastreams-support-28b7c1ce700d33c0.yaml | 8 ++ .../deprecate-set-state-3eea30afd43647ab.yaml | 5 + .../notes/drop-python38-5524bd07bca35743.yaml | 5 + ...d-on-metric-collect-error-824897dc2252b504.yaml | 7 ++ ...-total-with-es-os-backend-9540741b80819672.yaml | 2 +- .../secure-rbac-defaults-5bb903323634a94c.yaml | 17 ++++ ...undeprecate-elasticsearch-6f207824e439ede3.yaml | 7 ++ releasenotes/source/2023.1.rst | 2 +- releasenotes/source/2024.2.rst | 6 ++ releasenotes/source/index.rst | 1 + requirements.txt | 6 +- setup.cfg | 4 +- test-requirements.txt | 8 +- tox.ini | 8 +- 55 files changed, 560 insertions(+), 400 deletions(-) Requirements updates -------------------- diff --git a/requirements.txt b/requirements.txt index 636b7f0..4870db5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -5,4 +4,0 @@ -# The order of packages is significant, because pip processes them in the order -# of appearance. Changing the order has an impact on the overall integration -# process, which may cause wedges in the gate later. - @@ -27 +23 @@ oslo.middleware>=4.1.1 # Apache-2.0 -oslo.policy>=3.6.0 # Apache-2.0 +oslo.policy>=4.5.0 # Apache-2.0 diff --git a/test-requirements.txt b/test-requirements.txt index 92dd3c0..c3f8dce 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -1,7 +1 @@ -# The order of packages is significant, because pip processes them in the order -# of appearance. Changing the order has an impact on the overall integration -# process, which may cause wedges in the gate later. - -# hacking should be first -hacking>=6.1.0,<6.2.0 # Apache-2.0 - +hacking>=7.0.0,<7.1.0 # Apache-2.0