| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Create a tox environment for running the unit tests against the lower
bounds of the dependencies.
Create a lower-constraints.txt to be used to enforce the lower bounds
in those tests.
Add openstack-tox-lower-constraints job to the zuul configuration.
See http://lists.openstack.org/pipermail/openstack-dev/2018-March/128352.html
for more details.
Change-Id: I27d40ced965e35f5edcb1200faa5d1693cc12544
Depends-On: https://review.openstack.org/555034
Signed-off-by: Doug Hellmann <doug@doughellmann.com>
|
| |
|
|
| |
Change-Id: Ied4043ac0a30e78804875cbbe6e22724d164073a
|
| |\ |
|
| | |
| |
| |
| | |
Change-Id: I50a3011c302fb5568da8f57e2f5c354d1afb3a94
|
| |/
|
|
|
|
| |
Change the outdated links to the latest links in README
Change-Id: I19a9ece589e8412bf1dc31742c22ae8ae31acc79
|
| |
|
|
| |
Change-Id: I881fca9b06f551fd26b37fdb43502a71da8ffec8
|
| |\ |
|
| | |
| |
| |
| |
| |
| |
| | |
This change overrides the base find functionality within project
in order to encode tags to a base string.
Change-Id: I4599b8a4dafcb9d4178c973eb48a8ad3a7d292f5
|
| |/
|
|
| |
Change-Id: Ib9f2444a91679930a42f980eab22d32241e57302
|
| |\ |
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Add support for creating, reading, and deleting application credentials.
Application credentials do not support updating.
Keystoneclient does not handle authentication with application
credentials. This is done in keystoneauth. Additional work will be
needed in python-openstackclient to support both CRUD and auth for
application credentials.
bp application credentials
Change-Id: I21214238deac2c45f2f2d666287c2ae106955ab1
|
| |\ \
| |/
|/| |
|
| | |
| |
| |
| |
| |
| |
| |
| |
| | |
This commit adds the necessary bits to be able to use system
role assignments from python-keystoneclient.
bp system-scope
Change-Id: Iecbcbf020a15f2bec777334c648d4477f89f3b2c
|
| |/
|
|
|
|
| |
Change-Id: I748fadaececc4c5fe67ab6d671f13ce4ea964049
I44f2950a092bc03bdd0a9976242689a8f198b07a
I5f4dccaef48902bb4a5e6eab304c76cc5dbb258d
|
| |\ |
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Adds the client functionality for the following project tag calls:
- Create a project tag on a project
- Check if a project tag exists on a project
- List project tags on a project
- Modify project tags on a project
- Delete a specific project tag on a project
- Delete all project tags on a project
Co-Authored-By: Jess Egler <jess.egler@gmail.com>
Co-Authored-By: Rohan Arora <ra271w@att.com>
Co-Authored-By: Tin Lam <tin@irrational.io>
Partially Implements: bp project-tags
Change-Id: I486b2969ae0aa2638842d842fb8b0955cc086d25
|
| |\ \ |
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
For compliance with the Project Testing Interface as described in:
https://governance.openstack.org/tc/reference/project-testing-interface.html
Refer to:
http://lists.openstack.org/pipermail/openstack-dev/2017-November/124815.html
Change-Id: Iaa1530f19049883fc9fbce66f1fcc82ded559a07
|
| |/ /
| |
| |
| | |
Change-Id: I772af1795f877b6cd8f9bb4bbe1cb3d76a9d02e3
|
| |\ \ |
|
| | |/
| |
| |
| | |
Change-Id: Ie46206cb91bc9f34b5c30d5eba4e14a14e513dd6
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
We do not need tox_install.sh, pip can handle constraints itself
and install the project correctly. Thus update tox.ini and remove
the now obsolete tools/tox_install.sh file.
This follows https://review.openstack.org/#/c/508061 to remove
tools/tox_install.sh.
Change-Id: Iee9939776d5552b818aec5cab0b8c2a1133f74b9
|
| |/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
In some cases, the following:
datetime.datetime.now(tz=iso8601.iso8601.UTC).tzinfo.tzname()
returns:
'UTC+00:00'
rather than:
'UTC'
resulting in strings that look like:
2013-03-04T12:00:01.000000UTC+00:00
That is just flatly invalid. The code here accounts for a tzname of
"UTC" and normalizes to to being a trailing Z as-per the ISO 8601 spec,
but it does not account for UTC+00:00. Add support for that so that we
don't produce invalid date strings.
Most of this can be avoided by replacing use of this function with the
isoformat method of datetime instead.
datetime.datetime.now(tz=iso8601.iso8601.UTC).isoformat()
Produces
2013-03-04T12:00:01.000000+00:00
Which while different from
2013-03-04T12:00:01.000000Z
is still a valid iso8601 string.
Change-Id: I52ca7561abee158285c2c98ba63d84c62e12360f
|
| |\ |
|
| | |
| |
| |
| | |
Change-Id: I207b716e47893931e79e3758abc2bd879917f340
|
| |\ \ |
|
| | |/
| |
| |
| | |
Change-Id: I1a61cb7ddd1de429f2402f9da315c4b5b6cdee39
|
| |/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Release notes are version independent, so remove version/release
values. We've found that projects now require the service package
to be installed in order to build release notes, and this is entirely
due to the current convention of pulling in the version information.
Release notes should not need installation in order to build, so this
unnecessary version setting needs to be removed.
This is needed for new release notes publishing, see
I56909152975f731a9d2c21b2825b972195e48ee8 and the discussion starting
at
http://lists.openstack.org/pipermail/openstack-dev/2017-November/124480.html
.
Change-Id: If5da4725a9c896543f5c7d5212871b9f14afddab
|
| |
|
|
| |
Change-Id: I5e41a20ceb8c97a7e35ce0088a81cf5ef73d8e5d
|
| |
|
|
|
|
|
| |
Zuul v2 uses 'jenkins' as user, but Zuul v3 uses 'zuul'.
Using $USER solves it for both cases.
Change-Id: I42cfcd4d8dee2ff3a99e42a5a64f3c38163972b8
|
| |
|
|
| |
Change-Id: I1a8ced90154ed726c877385721754686974becc1
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
A bandit patch to block sha1 hash is failing CI [1], due to a false
positive on hashlib.sha1 (which actually uses HMAC-SHA1 in keystone
that is considered more secure then standard SHA1)
This change marks a # nosec comment against the line which is
triggering the false positive in Bandit.
[1] https://review.openstack.org/#/c/437563/6
Change-Id: Ib9618119c77f41fba0e612e37c7511676bed47e8
|
| |
|
|
| |
Change-Id: Idafa206fc3478257f641acba3533affd122171e0
|
| |
|
|
|
|
|
|
|
| |
The positional decorator results in poorly maintainable code in
a misguided effort to emulate python3's key-word-arg only notation
and functionality. This patch removes keystoneclient's dependance
on the positional decorator.
Change-Id: I9e691cc8b0c04992f4a8dabd67e1b413d3220d23
|
| |\ |
|
| | |
| |
| |
| | |
Change-Id: I16e8723a7424a44c0bef268adbcb88d3e471681a
|
| |\ \ |
|
| | |/
| |
| |
| | |
Change-Id: I0cf901d783c93cf489bfb5aa684cd003a1fa371e
|
| |/
|
|
|
|
|
| |
For more information about this automatic import see:
http://docs.openstack.org/developer/i18n/reviewing-translation-import.html
Change-Id: I5817b6bcf48d921150b10a87e17fe31d9d51db33
|
| |
|
|
| |
Change-Id: I6a0f4b82bb70548bda7afaa67ca7a3adc88320cc
|
| |
|
|
| |
Change-Id: I0672453e18b684bd0210a0554c4c09795e505df4
|
| |\ |
|
| | |
| |
| |
| | |
Change-Id: Ie0a8594f2dd0554a07111207899e6134affc998e
|
| |/
|
|
| |
Change-Id: Ia1e1a0163d038664f651f7182f6de2796ea6a840
|
| |\ |
|
| | |
| |
| |
| |
| | |
Change-Id: I0b1d1a4abdf919dd403679565cde046a825898fa
Depends-On: I2a4fc6a4782a5496b2ab4a8355ed2c3b6dac58fa
|
| |\ \ |
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
As part of the docs migration work[0] for Pike we need to switch to use
the openstackdocstheme.
[0]https://review.openstack.org/#/c/472275/
Change-Id: If3a8f6668d0a4e32bd8a20330d973249ce6a5b46
|
| |\ \ \
| |/ /
|/| /
| |/ |
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Due to latest change in docs the old urls don't work and cause gate
failures. Fix it to reflect the new locations.
Also temporarily drop reference to keystoneauth1 to prevent circular
dependency. This reference will be brought back after keystoneauth1
docs get fixed.
Change-Id: I7e170275fd422345505b7282b52899d08c7a4172
|