Commit Graph

787 Commits

Author SHA1 Message Date
Tony Breeds 2e97c57d6b 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: Ib58512d7cf75aecd73947e70fffc94b5aa98cf01
2017-09-12 16:19:15 -06:00
OpenStack Proposal Bot 9a92bcd3b7 Updated from global requirements
Change-Id: I2d952ece2dca1f95047bf848ec04383281afa701
2017-07-06 01:45:52 +00:00
OpenStack Proposal Bot 5f07d19d68 Updated from global requirements
Change-Id: Ie6a633061a81b08b7fae3b649bfbba736be10972
2017-06-27 12:23:20 +00:00
blue55 6cc79c8c30 Enable some off-by-default checks
Some of the available checks are disabled by default, like:
[H106] Don’t put vim configuration in source files
[H203] Use assertIs(Not)None to check for None

Change-Id: Icd0162ac6bef12b2303c41bc11c917901c6dcade
2017-06-23 10:44:22 +08:00
OpenStack Proposal Bot 5270b5f902 Imported Translations from Zanata
For more information about this automatic import see:
http://docs.openstack.org/developer/i18n/reviewing-translation-import.html

Change-Id: Iea72a461d10ca0396b329e651dfaa529cf9b09b6
2017-06-22 09:12:41 +00:00
OpenStack Proposal Bot 25c5c7501e Updated from global requirements
Change-Id: I4b9e7c177a6a339f27b7ca51f6e9310232675524
2017-06-08 16:29:06 +00:00
OpenStack Proposal Bot 018ea207be Updated from global requirements
Change-Id: Iba9056c014ea70dc5cf0c651b7e677f70e369358
2017-06-06 23:27:59 +00:00
Jeremy Freudberg fce0b61b78 Make health check info hideable
If cluster verification in Sahara is totally disabled, then operators
probably do not want to have ugly UNKNOWN in the cluster status page.
They also probably do not want any references to health at all, if
there will never be any usable information there. So, let's add
something that can be read from local_settings to disable these when
the operator doesn't want them.

Change-Id: Ifc624d07767ed29646aa8a5b5739103fd4972b90
Co-Authored-By: Lucas H. Xu <xuh@bu.edu>
2017-06-06 15:21:59 +00:00
Jeremy Freudberg 1c7c9e9251 Fix neutron-related openstack_dashboard imports
Hot Fix: In [0], floating IP and security group operations within
openstack_dashboard were moved. The imports are now corrected.

[0] https://review.openstack.org/#/c/466645/

Related-Blueprint: bp sahara-remove-nova-network
Change-Id: I2c086613fff302e852a2dda51701c620371a27e4
2017-06-06 10:05:01 -04:00
OpenStack Proposal Bot 29a350c9d4 Updated from global requirements
Change-Id: Id4f6eeb23c9cb3816db9b4e29b4eafc9f9a11b63
2017-05-17 03:59:17 +00:00
OpenStack Proposal Bot f3c196c938 Updated from global requirements
Change-Id: I789cca6bd07dd53b0751f92cd660ac00317f5f57
2017-05-15 00:55:44 +00:00
OpenStack Proposal Bot b05bd7ffb4 Imported Translations from Zanata
For more information about this automatic import see:
http://docs.openstack.org/developer/i18n/reviewing-translation-import.html

Change-Id: I99c2d9128285c05fd9912c0130535b860b686454
2017-05-09 07:11:23 +00:00
Ihor Kalnytskyi caaa96f91f Reuse testenv env variables in py27/py35 envs
Due to Tox override mechanism, both py27 and py35 envs do not pass
env variables defined in testenv to tox_install.sh script. Hence,
BRANCH_NAME is not defined and master code of Horizon is always
installed. While it's not critical for sahara-dashboard master branch,
it's crucial for stable branches, especially stable/newton where running
tox -e py27 fails due to fresh Horizon and old its dependencies.

This patch adds inheritance for py27 and py35 envs, so the env variables
defined in testenv will be also defined in these both envs.

Change-Id: I246049d29024b64b50dcdc153a809c9649716287
2017-05-05 16:44:32 +03:00
Dirk Mueller 052ff09bff Fix JS syntax error in variable declaration
Declarations in javascript should end with a semicolon. This
otherwise causes strange and hard to debug issues in minified
js assets.

Change-Id: I821a71b169b86e9f0318cbae4c6cc654cb97a4a7
2017-04-22 21:20:31 +02:00
OpenStack Proposal Bot 6e8537f1e5 Updated from global requirements
Change-Id: I084ee4ed8d5a177a904d99af051527439aef4bd6
2017-04-18 16:56:57 +00:00
Jenkins 021199ef8d Merge "Adding missing translation blocks" 2017-04-17 14:47:57 +00:00
OpenStack Proposal Bot d51870b5c0 Updated from global requirements
Change-Id: I61a354f3120db6074a8a69799fe43b7ec426c45a
2017-04-12 04:22:44 +00:00
Marianne Linhares Monteiro 1f3c44cb6d Adding missing translation blocks
Change-Id: I497b752d60a336592c3d12a70308ad80b696390e
Closes-bug: 1661501
2017-04-11 10:04:57 -03:00
Jenkins b7c754483d Merge "Remove support for py34" 2017-03-30 21:07:52 +00:00
pawnesh.kumar 549a30c494 Remove support for py34
The gating on python 3.4 is restricted to <= Mitaka. This is due to
the change from Ubuntu Trusty to Xenial, where only python3.5 is
available. There is no need to continue to keep these settings.

Change-Id: Ic28c0a6e8db6d6360c00ec834e474826cc3ada27
2017-03-30 12:29:57 +00:00
pawnesh.kumar 20ae6d4418 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: If17002f8ce9ddb44109feca9bed9524299c404c4
2017-03-30 15:46:48 +05:30
Jenkins 9402320c72 Merge "Main binary should not be allowed for some job types in Horizon" 2017-03-29 18:40:12 +00:00
OpenStack Proposal Bot c2ae0147ce Updated from global requirements
Change-Id: I26e802441569b460c4521d5ae2b47dddd5f40712
2017-03-28 21:38:44 +00:00
Shu Yingya 0011eb6130 Fix bugs of redirect url
Horizon has some changes as bellow about security group and keypairs.
Sahara-dashboard should sync the location of resource with horizon.

* Move Security Groups into its own panel
	https://review.openstack.org/#/c/427882/
* Make Key Pairs tab a panel under Compute:
	 https://review.openstack.org/#/c/408247/

Change-Id: I705e2feff090acd1d17e58b3d77c185fd0006c19
2017-03-27 20:20:23 +08:00
OpenStack Proposal Bot a6524503bf Imported Translations from Zanata
For more information about this automatic import see:
http://docs.openstack.org/developer/i18n/reviewing-translation-import.html

Change-Id: I1bca269f8ae00366153f20fc2f7fa1fda739b226
2017-03-24 06:12:44 +00:00
kavithahr 89b43b3d0e Replaces uuid.uuid4 with uuidutils.generate_uuid()
Change-Id: I745bdf2db5821ee951021c39105be9439e6f8831
2017-03-11 11:03:11 +00:00
Luong Anh Tuan 2963ea3ba2 Indicating the location tests directory in oslo_debug_helper
According to [1], we can passing a "-t" argument to
oslo_debug_helper to indicate the directory where tests
are located. This will solves ImportError exception.

[1] https://docs.openstack.org/developer/oslotest/features.html

Change-Id: I4c9bb211efddbad4f3a8e63c3779f3d62112cd32
Closes-Bug: #1666560
2017-03-10 00:00:06 +07:00
OpenStack Proposal Bot 4909335ae1 Updated from global requirements
Change-Id: Icb463b2df1e1f078c2b05f4140d6f4a16e55810b
2017-03-02 17:53:49 +00:00
ricolin 1cdf705931 [Fix gate]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: Ic274bb0da74e9bea52ac96e8fbe3809b50b3e434
2017-03-02 19:57:02 +08:00
Marianne Linhares Monteiro 67a0d8d272 Main binary should not be allowed for some job types in Horizon
Change-Id: Ie7a2b839f646572d0dcff808b7466d176937b16e
Closes-Bug: 1648455
2017-02-17 21:18:39 -03:00
OpenStack Proposal Bot be50a9a9fb Updated from global requirements
Change-Id: Ice295f81dd37551ade08e24d4201423785c27197
2017-02-13 15:21:52 +00:00
OpenStack Proposal Bot 7c4b0e587f Updated from global requirements
Change-Id: Ie57f43b9a5f2fe193ad1fd6fec21bf3a69e5118a
2017-02-10 06:00:12 +00:00
OpenStack Proposal Bot b4e06bdba8 Imported Translations from Zanata
For more information about this automatic import see:
http://docs.openstack.org/developer/i18n/reviewing-translation-import.html

Change-Id: Ic035f571096d474be4f93c55b12f2caf3e8d0a35
2017-02-04 07:55:46 +00:00
OpenStack Proposal Bot aa5ffb4d00 Imported Translations from Zanata
For more information about this automatic import see:
http://docs.openstack.org/developer/i18n/reviewing-translation-import.html

Change-Id: I28342dcf7e3499156a67de706aa97ee91a202a85
2017-02-03 07:56:23 +00:00
OpenStack Release Bot 9d9300e987 Update reno for stable/ocata
Change-Id: Ief352755603a18d284edd8d2495e9b02ca04b3e4
2017-02-02 14:41:57 +00:00
OpenStack Proposal Bot dccee666aa Updated from global requirements
Change-Id: I172491381b6f71966225bb52eaab680638915e95
2017-01-25 20:30:28 +00:00
Jenkins 6220308d71 Merge "Updated from global requirements" 2017-01-25 09:58:22 +00:00
OpenStack Proposal Bot 1a2e853c3c Imported Translations from Zanata
For more information about this automatic import see:
http://docs.openstack.org/developer/i18n/reviewing-translation-import.html

Change-Id: Ief6b5655ae5d3ec4a066debc3dd6a903de80f33f
2017-01-25 06:06:28 +00:00
OpenStack Proposal Bot c4a0a6aafc Updated from global requirements
Change-Id: I6c899d6bad8410e447613cddf3f62fa1b69bb881
2017-01-24 22:34:20 +00:00
OpenStack Proposal Bot 9ad23c460e Updated from global requirements
Change-Id: Ic5512593aefff8ae8e26656a3d78cacd8178e3c4
2017-01-24 14:09:06 +00:00
OpenStack Proposal Bot 21ca6c2df0 Updated from global requirements
Change-Id: I1fbf72de84c9bd816c3315f5f53a13e9b1807ec3
2017-01-24 12:21:00 +00:00
Jenkins 7026575b93 Merge "Remove useless iso8601 requirements" 2017-01-23 08:39:39 +00:00
Cao Xuan Hoang a06fd15999 Remove support for py33
Python 3.3 is not supported from Mitaka, as per Infra.
This patch removes the support for the same.

Change-Id: Ib92e8ee8c7e7ba43537772b30d98e67b3df17685
2017-01-23 13:34:22 +07:00
avnish 3cc93818fa Remove useless iso8601 requirements
This patch cleans up the requirements.txt list to remove
iso8601 module not used anymore.

Change-Id: I9d828297dee0a9a01bde8f8b84c505fd8b5603d1
2017-01-20 09:02:58 +05:30
OpenStack Proposal Bot 03dffdbbd5 Updated from global requirements
Change-Id: Ibb49a72ce98b792e758629cf436d11c1296856a7
2017-01-20 01:55:33 +00:00
Rajiv Kumar 0d15f0ec52 Switch to oslo_log
Change-Id: I1fe00ab7b0405422af76488245a67b3d68e29f06
2017-01-18 16:49:30 +05:30
OpenStack Proposal Bot cfc7a0d562 Imported Translations from Zanata
For more information about this automatic import see:
http://docs.openstack.org/developer/i18n/reviewing-translation-import.html

Change-Id: I5d708bdf28be1bf7e49d548ae2633e6598951cad
2017-01-11 06:15:14 +00:00
Jenkins fa5a784852 Merge "Make plugin version orderly in version list" 2016-12-27 12:51:23 +00:00
Shu Yingya 4e7680a3e3 Make plugin version orderly in version list
Just a minor chanage that sorted plugin version in the drop down list.

Change-Id: I2868fb1cdd4f71af48d5a41ed56a8dfa45e3b40a
2016-12-26 04:09:49 +00:00
Tony Breeds 978718ab96 Add Constraints support
Adding constraints support to libraries is slightly more complex than
services as the libraries themselves are listed in upper-constraints.txt
which leads to errors that you can't install a specific version and a
constrained version.

This change adds constraints support by also adding a helper script to
edit the constraints to remove sahara-dashboard.

As sahara-dashboard also uses run_tests.sh I've modified that code in
line with the horizon change I9bf85adb5aa2c85d8c0f0f22ac9efe5cac3646c0

Change-Id: Ieb8afdef1e9649b18a4394620e52b9f6ac3d997b
2016-12-22 15:06:30 +11:00