summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Update TOX_CONSTRAINTS_FILE for stable/victoriastable/victoriaOpenStack Release Bot2020-09-091-2/+2
| | | | | | | | | | | | Update the URL to the upper-constraints file to point to the redirect rule on releases.openstack.org so that anyone working on this branch will switch to the correct upper-constraints list automatically when the requirements repository branches. Until the requirements repository has as stable/victoria branch, tests will continue to use the upper-constraints list on master. Change-Id: I916be0443735b4574666c34df97fe8acc62ffed2
* Update .gitreview for stable/victoriaOpenStack Release Bot2020-09-091-0/+1
| | | | Change-Id: I7501eb035baff873c16ea0c3295371ab0dec4ce2
* Merge "drop mock from lower-constraints"victoria-em3.2.2Zuul2020-09-021-1/+0
|\
| * drop mock from lower-constraintsHervé Beraud2020-06-091-1/+0
| | | | | | | | | | | | | | | | | | | | The mock third party library was needed for mock support in py2 runtimes. Since we now only support py36 and later, we don't need it in lower-constraints. These changes will help us to drop `mock` from openstack/requirements Change-Id: I668a2f65431e8870268e067e1c0acd4d94a65c95
* | Merge "Remove F403, F812 and F821 from the ignorelist in tox.ini"Zuul2020-09-021-1/+1
|\ \
| * | Remove F403, F812 and F821 from the ignorelist in tox.iniCyril Roelandt2020-07-271-1/+1
| | | | | | | | | | | | | | | | | | | | | They are not needed since no such errors are triggered when running flake8. Change-Id: If6ba0627ca680167378543b4c38135aa2bd6a730
* | | Merge "Fix hacking min version to 3.0.1"Zuul2020-08-211-1/+1
|\ \ \
| * | | Fix hacking min version to 3.0.1Ghanshyam Mann2020-05-121-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | flake8 new release 3.8.0 added new checks and gate pep8 job start failing. hacking 3.0.1 fix the pinning of flake8 to avoid bringing in a new version with new checks. Though it is fixed in latest hacking but 2.0 and 3.0 has cap for flake8 as <4.0.0 which mean flake8 new version 3.9.0 can also break the pep8 job if new check are added. To avoid similar gate break in future, we need to bump the hacking min version. - http://lists.openstack.org/pipermail/openstack-discuss/2020-May/014828.html Change-Id: I88e1652fa2f99d475efd7489dcb3c3c1bb06f015
* | | | [goal] Migrate testing to ubuntu focalGhanshyam Mann2020-08-071-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As per victoria cycle testing runtime and community goal[1] we need to migrate upstream CI/CD to Ubuntu Focal(20.04). Fixing: - bug#1886298 Bump the lower constraints for required deps which added python3.8 support in their later version. Story: #2007865 Task: #40200 Closes-Bug: #1886298 [1] https://governance.openstack.org/tc/goals/selected/victoria/migrate-ci-cd-jobs-to-ubuntu-focal.h> Change-Id: I6f0dc11d4eb7a75d29da3eb5071b156bbe46ad01
* | | | Update test certificates to use strong signingJames Page2020-08-073-145/+115
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Modern OpenSSL (and specifically on Ubuntu) will reject certificates signed using the sha1 algorithm. Refresh test CA and associated certificates using sha256. Change-Id: Ie22a4630eb0f5993a909efed27088321c1865ca8
* | | | Fixes "stores" property added to the image3.2.1Erno Kuvaja2020-07-303-0/+59
| |/ / |/| | | | | | | | | | | | | | | | | | | | "stores" property gets added to the image when `glance image-create-via-import` is called with --stores Change-Id: I514e6e3ac2f3a1f56fb7883ed403a04b1e7f13b0 Closes-Bug: #1889666
* | | Merge "Do not use the six library."Zuul2020-07-1717-147/+57
|\ \ \
| * | | Do not use the six library.Cyril Roelandt2020-06-2317-147/+57
| | | | | | | | | | | | | | | | Change-Id: I3dbfcfa0f5f590a41ed549afd44537d8ed41433a
* | | | Merge "Do not use the six library in the tests."Zuul2020-07-169-105/+76
|\ \ \ \ | |/ / /
| * | | Do not use the six library in the tests.Cyril Roelandt2020-06-159-105/+76
| | |/ | |/| | | | | | | Change-Id: Ic8a2a736a733e0151ca82f19bfde428dc04cf255
* | | Merge "Pass Global Request ID on with session client"Zuul2020-07-163-1/+20
|\ \ \
| * | | Pass Global Request ID on with session clientErno Kuvaja2020-07-133-1/+20
| |/ / | | | | | | | | | | | | Closes-bug: #1886650 Change-Id: I3a08c1beb398ba9f2556b6779c925f679bdc2c49
* | | Merge "Stop to use the __future__ module."Zuul2020-07-133-6/+0
|\ \ \ | |/ / |/| |
| * | Stop to use the __future__ module.Hervé Beraud2020-06-023-6/+0
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The __future__ module [1] was used in this context to ensure compatibility between python 2 and python 3. We previously dropped the support of python 2.7 [2] and now we only support python 3 so we don't need to continue to use this module and the imports listed below. Imports commonly used and their related PEPs: - `division` is related to PEP 238 [3] - `print_function` is related to PEP 3105 [4] - `unicode_literals` is related to PEP 3112 [5] - `with_statement` is related to PEP 343 [6] - `absolute_import` is related to PEP 328 [7] [1] https://docs.python.org/3/library/__future__.html [2] https://governance.openstack.org/tc/goals/selected/ussuri/drop-py27.html [3] https://www.python.org/dev/peps/pep-0238 [4] https://www.python.org/dev/peps/pep-3105 [5] https://www.python.org/dev/peps/pep-3112 [6] https://www.python.org/dev/peps/pep-0343 [7] https://www.python.org/dev/peps/pep-0328 Change-Id: I732a57361319687ca0a64693f0e60bc0d8f5b3d2
* | Switch to newer openstackdocstheme and reno versions3.2.0Andreas Jaeger2020-05-224-23/+14
|/ | | | | | | | | | | | | | | | | | | | | | | | | | Switch to openstackdocstheme 2.2.1 and reno 3.1.0 versions. Using these versions will allow especially: * Linking from HTML to PDF document * Allow parallel building of documents * Fix some rendering problems Update Sphinx version as well. Remove docs requirements from lower-constraints, they are not needed during install or test but only for docs building. openstackdocstheme renames some variables, so follow the renames before the next release removes them. A couple of variables are also not needed anymore, remove them. Change pygments_style to 'native' since old theme version always used 'native' and the theme now respects the setting and using 'sphinx' can lead to some strange rendering. See also http://lists.openstack.org/pipermail/openstack-discuss/2020-May/014971.html Change-Id: Ie4aec288c74b9bd8d8d117f4bc2e0282cea4db90
* Fail gracefully when MD5 is unavailableBrian Rosmaita2020-05-046-3/+45
| | | | | | | | | The glanceclient currently assumes that MD5 will always be available. This is not the case, however, in a FIPS-compliant environment. This patch enables the glanceclient to fail gracefully in such a case. Closes-bug: #1871675 Change-Id: Ibd89989e06cc5be7da71f5f21561d73b5abc4104
* Merge "Bump default tox env from py37 to py38"Zuul2020-05-011-1/+1
|\
| * Bump default tox env from py37 to py38Sean McGinnis2020-04-241-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Python 3.8 is now our highest level supported python runtime. This updates the default tox target environments to swap out py37 for py38 to make sure local development testing is covering this version. This does not impact zuul jobs in any way, nor prevent local tests against py37. It just changes the default if none is explicitly provided. Change-Id: Id27c5ad8a9d4a00f37d4a3ff7f8a71780df50fb0 Signed-off-by: Sean McGinnis <sean.mcginnis@gmail.com>
* | Add py38 package metadataSean McGinnis2020-04-241-0/+1
|/ | | | | | | | | Now that we are running the Victoria tests that include a voting py38, we can now add the Python 3.8 metadata to the package information to reflect that support. Change-Id: Ifbadd0cab7363e604c11b94df3eb466d5e9dfe95 Signed-off-by: Sean McGinnis <sean.mcginnis@gmail.com>
* Use unittest.mock instead of third party mockSean McGinnis2020-04-189-9/+10
| | | | | | | | Now that we no longer support py27, we can use the standard library unittest.mock module instead of the third party mock lib. Change-Id: I446ee142c7a17446372c910f7f2a36d55df18e04 Signed-off-by: Sean McGinnis <sean.mcginnis@gmail.com>
* Merge "Fix SyntaxWarning with Python 3.8"Zuul2020-04-140-0/+0
|\
| * Fix SyntaxWarning with Python 3.8James Page2020-03-311-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Under Python 3.8, the following SyntaxWarning is logged on every glanceclient invocation: SyntaxWarning: "is not" with a literal. Did you mean "!="? if kwargs.get('cacert', None) is not '': Make use of '!=' rather than 'is not' to avoid this warning. Change-Id: I11ed568932ec5ea0ffee629d6fd434433f262b67
* | Add Python3 victoria unit testsSean McGinnis2020-04-101-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | This is an automatically generated patch to ensure unit testing is in place for all the of the tested runtimes for victoria. See also the PTI in governance [1]. [1]: https://governance.openstack.org/tc/reference/project-testing-interface.html Change-Id: I644e0dcb7c82f7eb3d112f03c021aff8db904aa5 Signed-off-by: Sean McGinnis <sean.mcginnis@gmail.com>
* | Pass --all-stores, --allow-failure as bool to APIAbhishek Kekane2020-04-081-3/+3
| | | | | | | | | | | | | | | | | | | | | | Newly added command line options --all-stores, --allow-failure are boolean but we are passing it as a string to glance API. This will cause problem if those parameters are not converted to boolean at API side. Passing these parameters as boolean instead of string to API. Change-Id: I8d4eab9241fc9bb24bc40b47bf18d63c86a97d77 Closes-Bug: #1871674
* | Update master for stable/ussuriOpenStack Release Bot2020-04-072-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | Add file to the reno documentation build to show release notes for stable/ussuri. Use pbr instruction to increment the minor version number automatically so that master versions are higher than the versions on stable/ussuri. Change-Id: Ic9dab2380f698e30c5cb1327c5f22bdd7489df51 Sem-Ver: feature
* | Rename releasenotes to reflect correct version3.1.0Erno Kuvaja2020-04-071-0/+0
| | | | | | | | | | | | | | As python-glanceclient 3.0.0 was released earlier, this release will be version 3.1.0 Change-Id: I18f4d4e9d61b235ea7896ea97c1b480249d474e2
* | Merge "Add release note for glanceclient 3.0.0"Zuul2020-04-071-0/+25
|\ \
| * | Add release note for glanceclient 3.0.0Abhishek Kekane2020-04-061-0/+25
| | | | | | | | | | | | Change-Id: I4556df86ab501362bdfae2d1457ba14dade52f22
* | | Cleanup py27 supportAndreas Jaeger2020-04-043-11/+3
|/ / | | | | | | | | | | | | | | | | Make a few cleanups: - Remove python 2.7 stanza from setup.py - Update classifiers - Update requirements, no need for python_version anymore Change-Id: I6b6dfb0959973abf0c2e8325006025db2a5d85d0
* | Update hacking for Python3Andreas Jaeger2020-04-0211-23/+24
|/ | | | | | | | | | | | The repo is Python 3 now, so update hacking to version 3.0 which supports Python 3. Fix problems found. Remove hacking and friends from lower-constraints, they are not needed for installation. Change-Id: I5ae47a7b11ff29a301e440c15daf30db7738485b
* Merge "update doc url to new"Zuul2020-03-261-2/+2
|\
| * update doc url to newlvxianguo2018-08-161-2/+2
| | | | | | | | Change-Id: I35e03b74f7ef79a0997dfd931f29b20350537189
* | Merge "Replace git.openstack.org URLs with opendev.org URLs"Zuul2020-03-264-8/+8
|\ \
| * | Replace git.openstack.org URLs with opendev.org URLsjacky062019-08-244-8/+8
| | | | | | | | | | | | Change-Id: Id02ac765028673ecabcb76d3f3014bbb383bc098
* | | Merge "Move py35 jobs to latest python3"Zuul2020-03-261-8/+8
|\ \ \
| * | | Move py35 jobs to latest python3Ghanshyam2020-01-221-8/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | glanceclient-tox-py35-keystone-tips and glanceclient-tox-py35-oslo-tips jobs run on py35 which should be moved the newer python3 version. Moving them to py3 env so that they can pickup the available python version on running node. Change-Id: I5fadbadf9eee2163ef6d17af2ceb49883151038c
* | | | Merge "Delete image from specific store"Zuul2020-03-204-0/+53
|\ \ \ \
| * | | | Delete image from specific storeErno Kuvaja2020-03-204-0/+53
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add support to delete image from specific store. bp: delete-from-store Change-Id: Ie57d7de5822264a5ea8a5f4587ab8cfb4afb79de
* | | | | Remove .zuul.yaml from the list of irrelevant filesCyril Roelandt2020-03-171-1/+0
|/ / / / | | | | | | | | | | | | Change-Id: Ibf038748df6e037df876c0e65d49aa79031275af
* | | | Merge "Remove v1 tests"Zuul2020-03-052-62/+0
|\ \ \ \
| * | | | Remove v1 testsErno Kuvaja2020-02-192-62/+0
| | | | | | | | | | | | | | | | | | | | Change-Id: Ic6cb15670a42d0cea424f58d6a1d85d5471e162e
* | | | | Merge "setup.cfg: Use better Python 3 hinting"Zuul2020-03-051-7/+1
|\ \ \ \ \
| * | | | | setup.cfg: Use better Python 3 hintingStephen Finucane2020-02-221-7/+1
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Make sure people are not using an incorrect version of Python and don't say we support universal wheels when we clearly do not. A bit of pbr configuration that hasn't been required since pre-1.0 is also dropped. Change-Id: I313df5b36ad908d55ae69421dfc527a67847c970 Signed-off-by: Stephen Finucane <sfinucan@redhat.com>
* | | | | Add support for copy-image import method3.0.0Abhishek Kekane2020-02-273-1/+115
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This change adds support for copy-image import method which will copy existing images into multiple stores. Change-Id: I748a8fb3dbaf9c2e4d887a2ecd4325e27a8429c4 bp: copy-image-multiple-stores
* | | | | Add support for multi-store importErno Kuvaja2020-02-274-11/+277
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This change adds support for providing multiple target stores where image can be imported. Co-authored-by: Erno Kuvaja <jokke@usr.fi> Co-authored-by: Abhishek Kekane <akekane@redhat.com> bp: import-multi-stores Change-Id: I8730364263f1afd5d11fd56939851bda73a892bb