Commit Graph

662 Commits

Author SHA1 Message Date
Tony Breeds b1bbbda4b1 Retire Packaging Deb project repos
This commit is part of a series to retire the Packaging Deb
project. Step 2 is to remove all content from the project
repos, replacing it with a README notification where to find
ongoing work, and how to recover the repo if needed at some
future point (as in
https://docs.openstack.org/infra/manual/drivers.html#retiring-a-project).

Change-Id: Ibb0cc03c6212d0992aa31a859a1126d6c3c610c5
2017-09-12 15:59:27 -06:00
OpenStack Proposal Bot 36fb986434 Updated from global requirements
Change-Id: I621faefd6780f425093fbaa1824004c317e0009f
2017-07-23 18:57:50 +00:00
OpenStack Proposal Bot 246baf8542 Updated from global requirements
Change-Id: I5e8336c9102cbf79ab64b7b0cd2eb1832029f779
2017-07-23 13:41:31 +00:00
OpenStack Proposal Bot 599b9b8491 Updated from global requirements
Change-Id: I8425f199c281603e02fc920a4ecf6953604b17f6
2017-07-19 14:42:21 +00:00
Brian Rosmaita fafc8fde90 Add release note for Pike.
Change-Id: I278fdb47e1643dae3ae8af71889105edf2f97dd1
2017-07-18 23:18:31 -04:00
Jenkins dc650c069b Merge "Cinder driver: TypeError in _open_cinder_volume" 2017-07-18 19:18:35 +00:00
Jenkins da94b56f9e Merge "Fixing string formatting bug in log message." 2017-07-18 17:14:13 +00:00
Jenkins 7b88334e02 Merge "Sheepdog: fix command execution failure" 2017-07-18 16:32:20 +00:00
zhangdaolong 0c5b04a59c Cinder driver: TypeError in _open_cinder_volume
Most of the drivers return a string as the value of device['path']
which is then opened and returned as a file-like object.  When the
volume driver type is 'rbd', the volume of device['path'] is already
a file-like object that can be returned directly.  This patch adds
code to handle this special case.

Change-Id: I0c73a740505420c48a1d1ec7d21449fb8848f6ff
Closes-bug: 1643516
2017-07-18 16:02:39 +00:00
OpenStack Proposal Bot 7ac6e99f4b Updated from global requirements
Change-Id: I4760baca3f2bf2bfca4dc02bdc68584740ba211c
2017-07-18 01:45:48 +00:00
Jenkins cc6e90a16f Merge "Removes unnecessary utf-8 coding for glance_store" 2017-07-14 12:37:28 +00:00
Jenkins 051e2353b0 Merge "Replace six.iteritems() with .items()" 2017-07-14 07:24:45 +00:00
Jenkins bad725ecd6 Merge "Add python 3.5 in classifier and envlist" 2017-07-14 07:09:03 +00:00
Jenkins 13b09d1b6d Merge "Suppress oslo-config DeprecationWarning during functional test" 2017-07-14 07:01:26 +00:00
OpenStack Proposal Bot 814d5cc399 Updated from global requirements
Change-Id: I6e00a441be252892124cd9a74e1dd0603f7ee39c
2017-07-13 19:29:49 +00:00
OpenStack Proposal Bot 3f9233be71 Updated from global requirements
Change-Id: Ie9dfbfccce90a35f09b5c5c8b544e558b521c3c2
2017-06-30 12:14:30 +00:00
Doug Hellmann 23f9d74388 set warning-is-error for documentation build
Change-Id: I285a95b9a2bd9d0f9f02896b44757c582c6d2c56
Signed-off-by: Doug Hellmann <doug@doughellmann.com>
2017-06-28 10:54:31 -04:00
Doug Hellmann 51cb0c5a84 switch from oslosphinx to openstackdocstheme
Change-Id: I2a05869c0fb0a5904ef1cc544676954d880332e2
Signed-off-by: Doug Hellmann <doug@doughellmann.com>
2017-06-28 10:54:31 -04:00
Doug Hellmann 26a74766f3 rearrange existing documentation according to the new standard layout
Change-Id: I0fb178d0b6ebf7ebafc6e2766c8c5efc5d8cc60e
Signed-off-by: Doug Hellmann <doug@doughellmann.com>
2017-06-28 10:54:14 -04:00
OpenStack Proposal Bot fb10a906d4 Updated from global requirements
Change-Id: Id1a1142e4650d00b3b1a2c797755ae1ba29af5ba
2017-06-27 12:09:49 +00:00
Jenkins a84fbc9543 Merge "Fix html_last_updated_fmt for Python3" 2017-06-21 21:20:08 +00:00
OpenStack Proposal Bot 74ed580ea1 Updated from global requirements
Change-Id: Ib2f5e6051f3205b4994f2f832b501052b402d247
2017-06-15 16:22:56 +00:00
Jenkins 309162a583 Merge "Initialize privsep root_helper command" 2017-06-13 23:21:13 +00:00
luqitao 26241ee5d5 Fix html_last_updated_fmt for Python3
html_last_updated_fmt option is interpreted as a
byte string in python3, causing Sphinx build to break.
This patch makes it utf-8 string.

Change-Id: I8eb08b739d01aa38596d1c92aad9f98cb0ae1eb2
Closes-Bug: #1693670
2017-06-09 04:35:06 -04:00
Szymon Datko 2c65bf7f1a Fixed tests due to updated oslo.config
Change-Id: Ib7923543862275629d86a0fa76baa88722493bad
Closes-Bug: #1691132
2017-05-26 21:27:05 -04:00
Eric Harney d16dff9a08 Initialize privsep root_helper command
Currently, when using the Cinder backend, Glance
tries to execute os-brick commands directly using
"privsep-helper".  They should be launched via
"glance-rootwrap".

Depends-On: Ib7923543862275629d86a0fa76baa88722493bad
Change-Id: I26d9474d4aadcc0e58e2fce746708f148138c71f
2017-05-24 12:50:33 +00:00
Sławek Kapłoński a783a7442b Don't fail when trying to unprotect unprotected snapshot on RBD
If rbd driver tries to unprotect snapshot which is already
unprotected, rbd lib raise InvalidArgument exception.
Rbd driver in glance_store will now handle such exception
and will continue deleting snapshot and image in such case.

Change-Id: I612b4421d5065dde002e3c0e0cb22537d2467adb
Closes-Bug: #1686063
2017-04-25 11:30:49 +00:00
OpenStack Proposal Bot cc11b4a903 Updated from global requirements
Change-Id: Ied42fe08ed16523786c5f262e784b374e045c092
2017-04-21 13:06:06 +00:00
Li Wei 963e2a0fd1 Add python 3.5 in classifier and envlist
Now we can support py35 in classifier,and add the convenience
py35 env.

Change-Id: I98ac5543d995dca021fc3aff3993dc07fb2c4b7a
2017-04-06 17:31:50 +00:00
Jenkins 60d3e01631 Merge "Imported Translations from Zanata" 2017-03-28 18:33:05 +00:00
Jenkins ea9910773c Merge "Update maintainer's email address" 2017-03-28 18:08:17 +00:00
OpenStack Proposal Bot b8918f2b68 Imported Translations from Zanata
For more information about this automatic import see:
http://docs.openstack.org/developer/i18n/reviewing-translation-import.html

Change-Id: I6ac660ba2703af4f9879c071f3a71f5ede6f4046
2017-03-24 07:54:13 +00:00
Jenkins 5bae81f9ef Merge "Remove debtcollector in requirements.txt" 2017-03-22 21:36:39 +00:00
Tomoki Sekiyama 38eb706ff9 Update maintainer's email address
Update cinder maintainer's email address.

Change-Id: I55cbf6c9f11d02ad93e94e9757ed4873415a9007
2017-03-21 17:23:11 +09:00
OpenStack Proposal Bot 17b28b5df1 Updated from global requirements
Change-Id: I04142d9e5961b04025d9b6b73684ef5a0f3fca6a
2017-03-16 18:12:10 +00:00
Jenkins 2508c093fc Merge "Use HostAddressOpt for store opts that accept IP and hostnames" 2017-03-15 15:56:53 +00:00
OpenStack Proposal Bot 2f1f18b4b4 Updated from global requirements
Change-Id: Ia0e03bbf431e0fa984d8ea576c5abee2a33956cc
2017-03-15 04:18:40 +00:00
Jenkins d268981093 Merge "Log at error when we intend to reraise the exception" 2017-03-15 02:18:31 +00:00
gengchc2 edc19a290b Replace six.iteritems() with .items()
1.As mentioned in [1], we should avoid using
six.iteritems to achieve iterators. We can
use dict.items instead, as it will return
iterators in PY3 as well. And dict.items/keys
will more readable. 2.In py2, the performance
about list should be negligible, see the link [2].
[1] https://wiki.openstack.org/wiki/Python3
[2] http://lists.openstack.org/pipermail/openstack-dev/2015-June/066391.html

Change-Id: I225da4f95187387007df11c91047497a2a93e862
2017-03-10 01:47:26 +00:00
gengchc2 c71b2e42d9 Removes unnecessary utf-8 coding for glance_store
The file was added redundant utf-8 coding by some editor.
we can delete it .

Change-Id: I1a87f00e3ca189d249932db7df73e2179415f81e
2017-03-10 01:37:48 +00:00
Dharini Chandrasekar d6f3c4e2d9 Use HostAddressOpt for store opts that accept IP and hostnames
The glance_store configuration options: ``sheepdog_store_address``
and ``vmware_server_host`` accept both IP addresses and hostnames.
Since there was no specific OSLO opt type to support this, we were
using ``StrOpt``. The change [1] that added support for
``HostAddressOpt`` type was merged in Ocata and became available for
use with oslo version 3.22.

This patch changes the opt type of these 2 glance_store configuration
options to use this more relevant opt type - HostAddressOpt.

[1] I77bdb64b7e6e56ce761d76696bc4448a9bd325eb

Change-Id: I43fec064815395b8a57e7ef21e43dcbe4d41066e
2017-03-09 19:52:54 +00:00
OpenStack Proposal Bot c596b64fbb Updated from global requirements
Change-Id: I5959d1506846b0495987b14655847d800e54ad27
2017-03-03 22:48:54 +00:00
Jenkins b0f979558b Merge "Update test requirement" 2017-03-03 22:06:26 +00:00
Jenkins 14e780b0ea Merge "An unit test passes because is launched as non-root user" 2017-03-03 02:23:49 +00:00
Adam Kijak f614b345be An unit test passes because is launched as non-root user
This change fixes the issue by setting filesystem_store_datadir
and filesystem_store_datadirs to None (missing values).

Closes-Bug: 1657710
Change-Id: Ida5bee9682e24befd63bd2b4b2107ee84eac1a1b
2017-03-02 14:01:23 +00:00
ricolin 9c92648df1 Update test requirement
Since pbr already landed and the old version of hacking seems not
work very well with pbr>=2, we should update it to match global
requirement.
Partial-Bug: #1668848

Change-Id: I488f5c7232e8e172d316f7d3059cdf6ead67e906
2017-03-02 16:32:02 +08:00
OpenStack Proposal Bot b5d6686f70 Updated from global requirements
Change-Id: I230fff0bb64be9e3a8485d94c8c3786feab73a50
2017-03-01 04:06:30 +00:00
Jenkins 2612aac297 Merge "Fix SafeConfigParser DeprecationWarning in Python 3.2+" 2017-02-28 06:13:48 +00:00
OpenStack Proposal Bot cd86c4304a Updated from global requirements
Change-Id: I3555871b9158d0d7d05cd59b11c567bbc67ab2bc
2017-02-11 17:41:49 +00:00
ChangBo Guo(gcb) 93f5570bde Fix SafeConfigParser DeprecationWarning in Python 3.2+
SafeConfigParser is deprecated in Python 3.2 and log warning
like " DeprecationWarning: The SafeConfigParser class has
been renamed to ConfigParser in Python 3.2. This alias will be
removed in future versions. Use ConfigParser directly instead."
So use ConfigParser in Python 3.2+.

We don't support Python 2.6 now, so don't need set dict_type manually.

Closes-Bug: #1618666
Change-Id: I53fba2317b4621488cb602c7f9f7b231f2dd80d7
2017-01-19 06:10:09 +00:00