- 21 Jun, 2022 1 commit
-
-
OpenStack Proposal Bot authored
For more information about this automatic import see: https://docs.openstack.org/i18n/latest/reviewing-translation-import.html Change-Id: I2a9934feb6da480e0f6b3eac462377fb85c899ef
-
- 08 Jun, 2022 1 commit
-
-
Tatiana Ovchinnikova authored
This patch aligns current code with AngularJS v1.8.2 requirements. Change-Id: Ifdad18e805953957bfaa1b42908dfbbe8976dbcb
-
- 04 Jun, 2022 2 commits
- 03 Jun, 2022 2 commits
- 31 May, 2022 2 commits
-
-
Radomir Dopieralski authored
We have a place in the form-handling code where we look for the blue form submit button, and if it's not found, we look for the red form submit button. It looks correct at first glance, however it takes 10 seconds to throw NoSuchElementException, because there is a delay that makes sure that the page loads fully before raising that exception. Replacing this with a selector that finds both the blue and the red buttons in one query speeds the whole integration tests suite by half an hour, because there is no more waiting on every delete confirmation dialog. Change-Id: Ie256118c0a84a8868393018b25b0aa049582a17d
-
Zuul authored
-
- 25 May, 2022 2 commits
- 24 May, 2022 1 commit
-
-
Tobias Urdin authored
This passes the client IP to the keystoneauth1 Session's original_ip parameter. This sets the Forwarder HTTP header so that when the request lands in Keystone the request can actually be interpreted who made the request and not only that it was proxied by Horizon. Forwarded: for=100.64.10.1;by=openstack_auth keystoneauth1/4.4.0 python-requests/2.25.1 CPython/3.6.8 In the above example header the 100.64.10.1 is the client IP that is sent from a load balancer in the X-Forwarded-For header while the actual REMOTE_ADDR in the HTTP request is the load balancers IP address. Change-Id: I52da9dcd7fb6b1ac46852718f285795628121e26
-
- 22 May, 2022 1 commit
-
-
Takashi Kajinami authored
Since tox 3.18.0, the whitelist_externals option has been deprecated in favor of the new allow_list_externals option[1]. This change bumps the minversion of tox so that we can replace the deprecated option. [1] https://github.com/tox-dev/tox/blob/master/docs/changelog.rst#v3180-2020-07-23 Change-Id: I1943ddbe8d63c577b5c8084a158af5bae4d1f9fc
-
- 19 May, 2022 1 commit
-
-
Zuul authored
-
- 18 May, 2022 1 commit
-
-
Zuul authored
-
- 12 May, 2022 1 commit
-
-
Zuul authored
-
- 09 May, 2022 1 commit
-
-
manchandavishal authored
As discussed in the horizon meetings or in horizon PTG sessions, horizon team agreed to deprecate django version of Images, Keypair and Roles panel as we think that feature gaps between the two implementations have been closed. Let's mark the Django version as deprecated for all these panels and gather more attention from operators. Change-Id: I965f9dbdd5e78b52a788f73b359c1c6fbc18637e
-
- 02 May, 2022 1 commit
-
-
Zuul authored
-
- 28 Apr, 2022 1 commit
-
-
manchandavishal authored
This patch defines a project template "horizon-nodejs-jobs" for nodejs v16 jobs which is the next LTS version of nodejs[1] and also, the runtime for the Zed cycle[2]. Next step is to the horizon plugins use this template to run nodejs v16 jobs and once it's pass in all horizon plugins we can remove nodejs v14 jobs completely. This patch also do few cleaups: • remove nodejs v14 job to run on horizon gate because we don't need to run both nodejs v14 and nodejs v16 jobs for horizon. • replace nodejs v14 experimental xstatic job with nodejs v16 job. • replace horizon-nodejs14-run-test periodic job with nodejs v16. [1] https://nodejs.org/en/about/releases/ [2] https://governance.openstack.org/tc/reference/runtimes/zed.html#node-js-runtime-for-zed Depends-On: https://review.opendev.org/c/openstack/openstack-zuul-jobs/+/831912 Change-Id: Ic11f2c3bd7a6a09c8fa6fb7a457e83e889deed6b
-
- 22 Apr, 2022 1 commit
-
-
Tatiana Ovchinnikova authored
Material Theme css tags differ from the ones from Default Theme, so the navigation we have doesn't work for some actions such as opening a new details page or reloading it, displaying breadcrumbs and menu panels. This patch adds some tweaks to fix that. Closes-Bug: #1968272 Change-Id: I18bd2e8515614463a911978879523744a9b059d7
-
- 21 Apr, 2022 1 commit
-
-
Tobias Urdin authored
The original_ip parameter for the keystoneauth plugin sets the Forwarded header sent to Keystone but right now it just sends the IP address of Horizon instead of the client's IP when Horizon is proxied and should use X-Forwarded-For. Change-Id: Ic994b7f36d4c6459bbd00c810e3b454c6b1201a6
-
- 12 Apr, 2022 1 commit
-
-
Zuul authored
-
- 08 Apr, 2022 1 commit
-
-
Zuul authored
-
- 31 Mar, 2022 3 commits
-
-
Zuul authored
-
manchandavishal authored
This patch is a follow-up patch of 00def145 which renamed is_safe_url() -> url_has_allowed_host_and_scheme() because is_safe_url() is deprecated in Django 3.0. For more info, please refer [1]. [1] https://docs.djangoproject.com/en/4.0/releases/3.0/#deprecated-features-3-0 Change-Id: I419f328916650093396fc153932a5053c3fa6b0e
-
manchandavishal authored
This patch adds documentation about the release process in the horizon. Change-Id: Iedcc857f0159dc7fea388e09469269130337ef5e
-
- 30 Mar, 2022 1 commit
-
-
Sam Morrison authored
This is not supported by the compute API so will never work. Closes-bug: #1967183 Change-Id: I0c64f9b1c9e48a96118db55c3ec8ab92a72ada8b
-
- 26 Mar, 2022 2 commits
- 25 Mar, 2022 2 commits
-
-
Zuul authored
-
Akihiro Motoki authored
keystone does not distinguish public and admin endpoints since Train [1], so there is no need to use a separate endpoint for keystone admin operations. admin endpoint still can be configured but there is no functional difference anymore from other endpoints. We do not need to require admin endpoint and can use an endpoint specified by OPENSTACK_ENDPOINT_TYPE for all API operations. This commit reverts commit f9bab3fe as we no longer need the workaround. [1] https://review.opendev.org/c/openstack/keystone/+/664246 Closes-Bug: #1950659 Change-Id: I2660fd2df8081e1d2d9c84626037f94bd9d137a5
-
- 24 Mar, 2022 3 commits
-
-
Zuul authored
-
Zuul authored
-
OpenStack Proposal Bot authored
For more information about this automatic import see: https://docs.openstack.org/i18n/latest/reviewing-translation-import.html Change-Id: I253f71b0b301a57b688918320c6db05039dd5d39
-
- 23 Mar, 2022 3 commits
-
-
OpenStack Release Bot authored
This is an automatically generated patch to ensure unit testing is in place for all the of the tested runtimes for zed. See also the PTI in governance [1]. [1]: https://governance.openstack.org/tc/reference/project-testing-interface.html Change-Id: Ib9a58c104aa0ec116ad86467b4d7b6ab4cdf7303
-
OpenStack Release Bot authored
Add file to the reno documentation build to show release notes for stable/yoga. Use pbr instruction to increment the minor version number automatically so that master versions are higher than the versions on stable/yoga. Sem-Ver: feature Change-Id: I3b552201ec02221ffefd0dce0d99327a020fccee
-
Takashi Kajinami authored
It was deprecated since Django 3.0 and is supposed to have been replaced by cd7c1b51 . Change-Id: If79c12df2ea785f143c13da45a04e8eaaf3b99c5
-
- 21 Mar, 2022 2 commits
-
-
Tatiana Ovchinnikova authored
The most elegant way to add pagination is to refactor the table using <hz-dynamic-table> which already contains pagination instead of wiring it to the existing table framework. This solution adds the pagination and makes the code more readable. Partial-Bug: #1859423 Change-Id: I18d6b4f33b274dadc90d73d8fd10efa5b09cb4d2
-
manchandavishal authored
This patch updates default policy-in-code rules in horizon based on nova/neutron/keystone/glance/cinder RC deliverables. It also bumps a few packages versions in lower-constraints.txt and requirements.txt to fix the failed lower-constraints job after updating policy rules. Change-Id: I168bb171076e3442b29670461a29d12c9988df52
-
- 12 Mar, 2022 2 commits