- 05 Apr, 2022 3 commits
-
-
Thomas Goirand authored
-
Thomas Goirand authored
-
Thomas Goirand authored
puppet-cloudkitty 9.3.0 release meta:version: 9.3.0 meta:diff-start: - meta:series: yoga meta:release-type: release meta:pypi: no meta:first: no meta:release:Author: Takashi Kajinami <tkajinam@redhat.com> meta:release:Commit: Takashi Kajinami <tkajinam@redhat.com> meta:release:Change-Id: I2b2bead3e7e2dbde46a817edab45e0d03699a11c meta:release:Code-Review+2: Thierry Carrez <thierry@openstack.org> meta:release:Code-Review+2: Elod Illes <elod.illes@est.tech> meta:release:Workflow+1: Elod Illes <elod.illes@est.tech>
-
- 29 Mar, 2022 1 commit
-
-
Jiri Podivin authored
The latest release of setuptools 61.0 made a breaking change[1] and because of this change 'pip install' fails with the following error. ~~~ error: Multiple top-level packages discovered in a flat-layout: ['lib', 'spec', 'manifests', 'releasenotes']. ~~~ Users that don't set 'packages', 'py_modules', or configuration' are still likely to observe the auto-discovery behavior, which may halt the build if the project contains multiple directories and/or multiple Python files directly under the project root. To disable auto discovery, one can do below in setup.py ~~~ setuptools.setup(..,packages=[],..) ~~~ or ~~~ setuptools.setup(..,py_modules=[],..) ~~~ [1] https://github.com/pypa/setuptools/issues/3197 Note setup.py is not used to install puppet modules. However it is used to generate a release note, thus should be fixed. Signed-off-by:
Jiri Podivin <jpodivin@redhat.com> Change-Id: I4a3e30d2615fce5b920260272633cac6c02694db
-
- 25 Mar, 2022 1 commit
-
-
Thomas Goirand authored
-
- 14 Mar, 2022 4 commits
-
-
Thomas Goirand authored
-
Thomas Goirand authored
-
Thomas Goirand authored
-
Thomas Goirand authored
puppet-cloudkitty 9.2.0 release meta:version: 9.2.0 meta:diff-start: - meta:series: yoga meta:release-type: release meta:pypi: no meta:first: no meta:release:Author: Takashi Kajinami <tkajinam@redhat.com> meta:release:Commit: Takashi Kajinami <tkajinam@redhat.com> meta:release:Change-Id: I1fe667a3a1af784b33565fcd4a4e1d19092861f0 meta:release:Code-Review+2: Thierry Carrez <thierry@openstack.org> meta:release:Code-Review+2: Elod Illes <elod.illes@est.tech> meta:release:Workflow+1: Elod Illes <elod.illes@est.tech>
-
- 11 Mar, 2022 4 commits
-
-
Takashi Kajinami authored
The previous change was incomplete and didn't update version of this module. This change fixes that. Change-Id: Ieec5a86d427bc9ca9218c00b1ea5877fca6d5d2a
-
Zuul authored
-
Takashi Kajinami authored
Change-Id: I6d2b8201b2ac1601d07b5e0b0a200a9e7a26fa2d
-
Zuul authored
-
- 08 Mar, 2022 1 commit
-
-
Takashi Kajinami authored
All strings are considered as unicode string from Python 3. This patch drops the explicit unicode literal (u'...') appearances from the unicode strings. Change-Id: I225cc9d5ca941d3efb02e46f1759db3df73e6313 Co-Authored-By:LiZekun <2954674728@qq.com>
-
- 03 Mar, 2022 1 commit
-
-
Takashi Kajinami authored
After spending huge effort to understand the exact requirements to enforce SRBAC, we learned it's very difficult to find the required scope in each credential. This requires understanding implementation of client-side as well as server-side, and requirement might be different according to the deployment architecture or features used. Instead of implementing support based on the actual implementation, this introduces support for system scope credentials to all places where keystone user credential is defined, and make all credential configurations consistent. Change-Id: I50c029b07a30c201b4d9bd4821265d4bf465ba9f
-
- 27 Feb, 2022 1 commit
-
-
ZhongShengping authored
Update the version metadata for Yoga milestone M3 Change-Id: I9bcf373d13e23065e1d32ef60c016aba803cce19
-
- 22 Feb, 2022 2 commits
-
-
Takashi Kajinami authored
... because these operating systems are now verified by unit tests and integration tests. Change-Id: Id3f8fad52f4103e43f867455037e23fc19090050
-
Zuul authored
-
- 20 Feb, 2022 1 commit
-
-
Takashi Kajinami authored
and replace hard-codes by definition in params.pp . Change-Id: If76bc4202133742fe47140238d065a080d5a4a66
-
- 18 Feb, 2022 3 commits
- 15 Feb, 2022 3 commits
-
-
Takashi Kajinami authored
The puppt-postgresql module does not support CentOS 9 yet and requires some version parameters to be run on CentOS 9. This change disables unit tests requiring that module, until the module supports CentOS 9. Change-Id: If26b9d1a31028bb56106a2cce0faadcc7d38757f
-
Zuul authored
-
Zuul authored
-
- 14 Feb, 2022 2 commits
- 13 Feb, 2022 2 commits
-
-
Takashi Kajinami authored
This change introduces a separate new class to manage [orchestrator] parameters. The max_workers parameter in the processor class is deprecated in favor of that new class. Change-Id: Icd30923802064aec6a3ae9716b2ae30665998aae
-
Takashi Kajinami authored
The cloudkitty::ui class has been added to install the dashboard plugin package. However the current implementation is incomplete and does not define the required dependencies to install the plugin package before starting the horizon service. Furthermore, the same can be achieved by the horizon::dashboard resource type and that is considered to be more "native" way. This change deprecates the ui class so that we can get rid of it in a future release. Change-Id: I8eab557c13b3a6455a38b24732c692c5e823421a
-
- 12 Feb, 2022 2 commits
-
-
Takashi Kajinami authored
The api-paste.ini accepts not only "=" but also ":" and some services like Barbican have been using ":" for their default api-paste.ini files. [composite:main] use = egg:Paste#urlmap /: barbican_version /v1: barbican-api-keystone This change allows users to use ":" so that they can update the ini files with keeping it consistent with the default fules Depends-on: https://review.opendev.org/813614 Change-Id: I3c357f6188cdd60e6bb799063e76a600d885aa54
-
Takashi Kajinami authored
This replaces the provider implementation of cloudkitty_config type so that MultiStrOpt, which is used by several options like - oslo_messaging_notifications/driver - oslo_policy/policy_dirs are handled correctly. Change-Id: Iefdfa5b83cb1f5ff691cc38e0f691babac9bdfb0
-
- 10 Feb, 2022 1 commit
-
-
Takashi Kajinami authored
Change-Id: Ib43b45c7232ef5ccbb91949a7b6d1a1aa3da1d28
-
- 08 Feb, 2022 2 commits
-
-
Takashi Kajinami authored
... because it was deprecated during Ussuri cycle. Change-Id: Ie1826e0c5fc4112bf7adb4efa6aef046a648ea8a
-
Takashi Kajinami authored
... because it was deprecated during Wallaby cycle. Change-Id: I6c8b52e3d2d94c11786debb8ea0ccb9adce1b407
-
- 06 Feb, 2022 1 commit
-
-
Takashi Kajinami authored
Use the whole resource type instead of its individual resources, to rely on interface instead of implementation of the dependent module. Change-Id: I7d1b55e83a097e558db9e1f315c1ee85256d9419
-
- 04 Feb, 2022 1 commit
-
-
Takashi Kajinami authored
... so that any change in puppet-oslo would not directly break unit tests. Change-Id: I8bfd797ac6f9f1a930533112182587b53bfe13f9
-
- 26 Jan, 2022 1 commit
-
-
Zuul authored
-
- 25 Jan, 2022 2 commits
-
-
Takashi Kajinami authored
Change-Id: I7f60d26ab9554867a30f53df7520e6cbfc18fdd1
-
Takashi Kajinami authored
Change-Id: I32dcaf02af85d3bf44cecce13fadf8520025d66f
-
- 24 Jan, 2022 1 commit
-
-
Takashi Kajinami authored
This change is the first step to support secure RBAC and allows usage of system scope credentials for Keystone API request. This change covers the following two items. - assignment of system scope roles to system user - credential parameters for authtoken middleware Depends-on: https://review.opendev.org/804325 Change-Id: Ia12867af22002b6a6d1e40e9ded60c92d493023b
-