octavia 15.0.0.0rc1__py3-none-any.whl → 16.0.0.0rc1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- octavia/amphorae/backends/agent/api_server/keepalivedlvs.py +9 -0
- octavia/amphorae/backends/agent/api_server/loadbalancer.py +6 -6
- octavia/amphorae/backends/agent/api_server/plug.py +1 -1
- octavia/amphorae/backends/agent/api_server/util.py +35 -2
- octavia/amphorae/backends/health_daemon/status_message.py +1 -2
- octavia/amphorae/drivers/haproxy/rest_api_driver.py +12 -7
- octavia/api/drivers/amphora_driver/flavor_schema.py +5 -0
- octavia/api/drivers/noop_driver/driver.py +2 -1
- octavia/api/drivers/utils.py +12 -0
- octavia/api/root_controller.py +8 -2
- octavia/api/v2/controllers/base.py +8 -4
- octavia/api/v2/controllers/listener.py +12 -2
- octavia/api/v2/controllers/load_balancer.py +33 -1
- octavia/api/v2/controllers/member.py +58 -4
- octavia/api/v2/types/load_balancer.py +7 -1
- octavia/api/v2/types/member.py +3 -0
- octavia/common/base_taskflow.py +19 -10
- octavia/common/clients.py +8 -2
- octavia/common/config.py +17 -2
- octavia/common/constants.py +6 -0
- octavia/common/data_models.py +32 -2
- octavia/common/exceptions.py +5 -0
- octavia/common/utils.py +4 -1
- octavia/common/validate.py +16 -0
- octavia/compute/drivers/noop_driver/driver.py +30 -1
- octavia/controller/healthmanager/health_manager.py +7 -0
- octavia/controller/worker/v2/flows/amphora_flows.py +3 -5
- octavia/controller/worker/v2/flows/listener_flows.py +2 -1
- octavia/controller/worker/v2/flows/load_balancer_flows.py +38 -0
- octavia/controller/worker/v2/taskflow_jobboard_driver.py +34 -6
- octavia/controller/worker/v2/tasks/compute_tasks.py +9 -5
- octavia/controller/worker/v2/tasks/database_tasks.py +26 -6
- octavia/controller/worker/v2/tasks/network_tasks.py +118 -70
- octavia/db/base_models.py +29 -5
- octavia/db/migration/alembic_migrations/versions/3097e55493ae_add_sg_id_to_vip_table.py +39 -0
- octavia/db/migration/alembic_migrations/versions/8db7a6443785_add_member_vnic_type.py +36 -0
- octavia/db/migration/alembic_migrations/versions/fabf4983846b_add_member_port_table.py +40 -0
- octavia/db/models.py +43 -1
- octavia/db/repositories.py +88 -9
- octavia/network/base.py +29 -12
- octavia/network/data_models.py +2 -1
- octavia/network/drivers/neutron/allowed_address_pairs.py +55 -46
- octavia/network/drivers/neutron/base.py +28 -16
- octavia/network/drivers/neutron/utils.py +2 -2
- octavia/network/drivers/noop_driver/driver.py +150 -29
- octavia/policies/__init__.py +4 -0
- octavia/policies/advanced_rbac.py +95 -0
- octavia/policies/base.py +5 -101
- octavia/policies/keystone_default_roles.py +81 -0
- octavia/policies/loadbalancer.py +13 -0
- octavia/tests/common/constants.py +2 -1
- octavia/tests/common/sample_data_models.py +27 -14
- octavia/tests/functional/amphorae/backend/agent/api_server/test_server.py +5 -4
- octavia/tests/functional/api/drivers/driver_agent/test_driver_agent.py +2 -1
- octavia/tests/functional/api/v2/test_health_monitor.py +1 -1
- octavia/tests/functional/api/v2/test_l7policy.py +1 -1
- octavia/tests/functional/api/v2/test_listener.py +1 -1
- octavia/tests/functional/api/v2/test_load_balancer.py +150 -4
- octavia/tests/functional/api/v2/test_member.py +50 -0
- octavia/tests/functional/api/v2/test_pool.py +1 -1
- octavia/tests/functional/api/v2/test_quotas.py +5 -8
- octavia/tests/functional/db/base.py +6 -6
- octavia/tests/functional/db/test_models.py +124 -1
- octavia/tests/functional/db/test_repositories.py +237 -19
- octavia/tests/unit/amphorae/backends/agent/api_server/test_util.py +89 -1
- octavia/tests/unit/amphorae/drivers/haproxy/test_rest_api_driver_1_0.py +10 -7
- octavia/tests/unit/api/drivers/test_utils.py +6 -1
- octavia/tests/unit/certificates/generator/test_local.py +1 -1
- octavia/tests/unit/common/test_base_taskflow.py +4 -3
- octavia/tests/unit/compute/drivers/noop_driver/test_driver.py +28 -2
- octavia/tests/unit/controller/worker/v2/flows/test_load_balancer_flows.py +27 -1
- octavia/tests/unit/controller/worker/v2/tasks/test_database_tasks.py +28 -6
- octavia/tests/unit/controller/worker/v2/tasks/test_network_tasks.py +100 -79
- octavia/tests/unit/controller/worker/v2/test_taskflow_jobboard_driver.py +8 -0
- octavia/tests/unit/network/drivers/neutron/test_allowed_address_pairs.py +62 -45
- octavia/tests/unit/network/drivers/neutron/test_base.py +7 -7
- octavia/tests/unit/network/drivers/noop_driver/test_driver.py +55 -42
- {octavia-15.0.0.0rc1.data → octavia-16.0.0.0rc1.data}/data/share/octavia/diskimage-create/tox.ini +0 -1
- {octavia-15.0.0.0rc1.dist-info → octavia-16.0.0.0rc1.dist-info}/AUTHORS +3 -0
- octavia-16.0.0.0rc1.dist-info/METADATA +156 -0
- {octavia-15.0.0.0rc1.dist-info → octavia-16.0.0.0rc1.dist-info}/RECORD +95 -90
- {octavia-15.0.0.0rc1.dist-info → octavia-16.0.0.0rc1.dist-info}/WHEEL +1 -1
- {octavia-15.0.0.0rc1.dist-info → octavia-16.0.0.0rc1.dist-info}/entry_points.txt +1 -1
- octavia-16.0.0.0rc1.dist-info/pbr.json +1 -0
- octavia-15.0.0.0rc1.dist-info/METADATA +0 -156
- octavia-15.0.0.0rc1.dist-info/pbr.json +0 -1
- {octavia-15.0.0.0rc1.data → octavia-16.0.0.0rc1.data}/data/share/octavia/LICENSE +0 -0
- {octavia-15.0.0.0rc1.data → octavia-16.0.0.0rc1.data}/data/share/octavia/README.rst +0 -0
- {octavia-15.0.0.0rc1.data → octavia-16.0.0.0rc1.data}/data/share/octavia/diskimage-create/README.rst +0 -0
- {octavia-15.0.0.0rc1.data → octavia-16.0.0.0rc1.data}/data/share/octavia/diskimage-create/diskimage-create.sh +0 -0
- {octavia-15.0.0.0rc1.data → octavia-16.0.0.0rc1.data}/data/share/octavia/diskimage-create/image-tests.sh +0 -0
- {octavia-15.0.0.0rc1.data → octavia-16.0.0.0rc1.data}/data/share/octavia/diskimage-create/requirements.txt +0 -0
- {octavia-15.0.0.0rc1.data → octavia-16.0.0.0rc1.data}/data/share/octavia/diskimage-create/test-requirements.txt +0 -0
- {octavia-15.0.0.0rc1.data → octavia-16.0.0.0rc1.data}/data/share/octavia/diskimage-create/version.txt +0 -0
- {octavia-15.0.0.0rc1.data → octavia-16.0.0.0rc1.data}/scripts/octavia-wsgi +0 -0
- {octavia-15.0.0.0rc1.dist-info → octavia-16.0.0.0rc1.dist-info}/LICENSE +0 -0
- {octavia-15.0.0.0rc1.dist-info → octavia-16.0.0.0rc1.dist-info}/top_level.txt +0 -0
@@ -1,156 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.1
|
2
|
-
Name: octavia
|
3
|
-
Version: 15.0.0.0rc1
|
4
|
-
Summary: OpenStack Octavia Scalable Load Balancer as a Service
|
5
|
-
Home-page: https://docs.openstack.org/octavia/latest/
|
6
|
-
Author: OpenStack
|
7
|
-
Author-email: openstack-discuss@lists.openstack.org
|
8
|
-
License: UNKNOWN
|
9
|
-
Platform: UNKNOWN
|
10
|
-
Classifier: Development Status :: 5 - Production/Stable
|
11
|
-
Classifier: Environment :: OpenStack
|
12
|
-
Classifier: Intended Audience :: Developers
|
13
|
-
Classifier: Intended Audience :: Information Technology
|
14
|
-
Classifier: Intended Audience :: System Administrators
|
15
|
-
Classifier: License :: OSI Approved :: Apache Software License
|
16
|
-
Classifier: Operating System :: POSIX :: Linux
|
17
|
-
Classifier: Programming Language :: Python
|
18
|
-
Classifier: Programming Language :: Python :: 3
|
19
|
-
Classifier: Programming Language :: Python :: 3.9
|
20
|
-
Classifier: Programming Language :: Python :: 3.10
|
21
|
-
Classifier: Programming Language :: Python :: 3.11
|
22
|
-
Requires-Python: >=3.9
|
23
|
-
Requires-Dist: Flask (!=0.11,>=0.10)
|
24
|
-
Requires-Dist: Jinja2 (>=2.10)
|
25
|
-
Requires-Dist: SQLAlchemy-Utils (>=0.30.11)
|
26
|
-
Requires-Dist: SQLAlchemy (>=1.2.19)
|
27
|
-
Requires-Dist: WSME (>=0.8.0)
|
28
|
-
Requires-Dist: WebOb (>=1.8.2)
|
29
|
-
Requires-Dist: Werkzeug (>=0.14.1)
|
30
|
-
Requires-Dist: alembic (>=0.9.6)
|
31
|
-
Requires-Dist: castellan (>=0.16.0)
|
32
|
-
Requires-Dist: cotyledon (>=1.3.0)
|
33
|
-
Requires-Dist: cryptography (>=42.0.0)
|
34
|
-
Requires-Dist: distro (>=1.2.0)
|
35
|
-
Requires-Dist: futurist (>=1.2.0)
|
36
|
-
Requires-Dist: gunicorn (>=19.9.0)
|
37
|
-
Requires-Dist: jsonschema (>=3.2.0)
|
38
|
-
Requires-Dist: keystoneauth1 (>=3.4.0)
|
39
|
-
Requires-Dist: keystonemiddleware (>=9.5.0)
|
40
|
-
Requires-Dist: octavia-lib (>=3.3.0)
|
41
|
-
Requires-Dist: openstacksdk (>=0.103.0)
|
42
|
-
Requires-Dist: oslo.config (>=6.8.0)
|
43
|
-
Requires-Dist: oslo.context (>=2.22.0)
|
44
|
-
Requires-Dist: oslo.db[mysql] (>=8.4.0)
|
45
|
-
Requires-Dist: oslo.i18n (>=3.20.0)
|
46
|
-
Requires-Dist: oslo.log (>=4.3.0)
|
47
|
-
Requires-Dist: oslo.messaging (>=14.1.0)
|
48
|
-
Requires-Dist: oslo.middleware (>=4.0.1)
|
49
|
-
Requires-Dist: oslo.policy (>=3.7.0)
|
50
|
-
Requires-Dist: oslo.reports (>=1.18.0)
|
51
|
-
Requires-Dist: oslo.serialization (>=2.28.1)
|
52
|
-
Requires-Dist: oslo.upgradecheck (>=1.3.0)
|
53
|
-
Requires-Dist: oslo.utils (>=4.7.0)
|
54
|
-
Requires-Dist: pbr (>=3.1.1)
|
55
|
-
Requires-Dist: pecan (>=1.3.2)
|
56
|
-
Requires-Dist: psutil (>=5.7.1)
|
57
|
-
Requires-Dist: pyasn1 (!=0.2.3,>=0.1.8)
|
58
|
-
Requires-Dist: pyasn1-modules (>=0.0.6)
|
59
|
-
Requires-Dist: python-barbicanclient (>=4.5.2)
|
60
|
-
Requires-Dist: python-cinderclient (>=3.3.0)
|
61
|
-
Requires-Dist: python-dateutil (>=2.7.0)
|
62
|
-
Requires-Dist: python-glanceclient (>=2.8.0)
|
63
|
-
Requires-Dist: python-novaclient (>=9.1.0)
|
64
|
-
Requires-Dist: requests (>=2.23.0)
|
65
|
-
Requires-Dist: rfc3986 (>=1.2.0)
|
66
|
-
Requires-Dist: setproctitle (>=1.1.10)
|
67
|
-
Requires-Dist: stevedore (>=1.20.0)
|
68
|
-
Requires-Dist: taskflow (>=5.5.0)
|
69
|
-
Requires-Dist: tenacity (>=5.0.4)
|
70
|
-
Requires-Dist: pyroute2 (>=0.5.14) ; (sys_platform!='win32')
|
71
|
-
Provides-Extra: redis
|
72
|
-
Requires-Dist: redis (>=3.4.0) ; extra == 'redis'
|
73
|
-
Provides-Extra: test
|
74
|
-
Requires-Dist: WebTest (>=2.0.26) ; extra == 'test'
|
75
|
-
Requires-Dist: bandit (!=1.6.0,>=1.1.0) ; extra == 'test'
|
76
|
-
Requires-Dist: bashate (>=0.5.1) ; extra == 'test'
|
77
|
-
Requires-Dist: coverage (!=4.4,>=4.0) ; extra == 'test'
|
78
|
-
Requires-Dist: doc8 (>=0.6.0) ; extra == 'test'
|
79
|
-
Requires-Dist: fixtures (>=3.0.0) ; extra == 'test'
|
80
|
-
Requires-Dist: flake8-import-order (<0.19.0,>=0.18.0) ; extra == 'test'
|
81
|
-
Requires-Dist: hacking (<6.2.0,>=6.1.0) ; extra == 'test'
|
82
|
-
Requires-Dist: oslotest (>=3.2.0) ; extra == 'test'
|
83
|
-
Requires-Dist: pylint (>=2.5.3) ; extra == 'test'
|
84
|
-
Requires-Dist: python-subunit (>=1.0.0) ; extra == 'test'
|
85
|
-
Requires-Dist: requests-mock (>=1.2.0) ; extra == 'test'
|
86
|
-
Requires-Dist: sphinx (!=2.1.0,>=2.0.0) ; extra == 'test'
|
87
|
-
Requires-Dist: tempest (>=23.0.0) ; extra == 'test'
|
88
|
-
Requires-Dist: testrepository (>=0.0.18) ; extra == 'test'
|
89
|
-
Requires-Dist: testresources (>=2.0.0) ; extra == 'test'
|
90
|
-
Requires-Dist: testscenarios (>=0.4) ; extra == 'test'
|
91
|
-
Requires-Dist: testtools (>=2.2.0) ; extra == 'test'
|
92
|
-
Provides-Extra: zookeeper
|
93
|
-
Requires-Dist: kazoo (>=2.6.0) ; extra == 'zookeeper'
|
94
|
-
Requires-Dist: zake (>=0.1.6) ; extra == 'zookeeper'
|
95
|
-
|
96
|
-
========================
|
97
|
-
Team and repository tags
|
98
|
-
========================
|
99
|
-
|
100
|
-
.. image:: https://governance.openstack.org/tc/badges/octavia.svg
|
101
|
-
:target: https://governance.openstack.org/tc/reference/tags/index.html
|
102
|
-
|
103
|
-
.. Change things from this point on
|
104
|
-
|
105
|
-
=======
|
106
|
-
Octavia
|
107
|
-
=======
|
108
|
-
|
109
|
-
.. image:: https://img.shields.io/pypi/v/octavia.svg
|
110
|
-
:target: https://pypi.org/project/octavia/
|
111
|
-
:alt: Latest Version
|
112
|
-
|
113
|
-
Octavia is an operator-grade open source scalable load balancer for use in
|
114
|
-
large OpenStack deployments.
|
115
|
-
|
116
|
-
Octavia provides the load balancing API for OpenStack. It supports multiple
|
117
|
-
"provider drivers" that implement load balancing, including the "amphora"
|
118
|
-
reference driver included with Octavia.
|
119
|
-
|
120
|
-
Octavia is distributed under the terms of the Apache License, Version 2.0.
|
121
|
-
The full terms and conditions of this license are detailed in the LICENSE
|
122
|
-
file.
|
123
|
-
|
124
|
-
Project resources
|
125
|
-
~~~~~~~~~~~~~~~~~
|
126
|
-
|
127
|
-
Developer documentation for the Octavia project is available at
|
128
|
-
https://docs.openstack.org/octavia/latest/
|
129
|
-
|
130
|
-
Release notes for the Octavia project are available at
|
131
|
-
https://docs.openstack.org/releasenotes/octavia/
|
132
|
-
|
133
|
-
The project source code repository is located at
|
134
|
-
https://opendev.org/openstack/octavia
|
135
|
-
|
136
|
-
Project status, bugs, and requests for feature enhancements are tracked on
|
137
|
-
https://launchpad.net/octavia
|
138
|
-
|
139
|
-
For more information on project direction and guiding principles for
|
140
|
-
contributors, please see the CONSTITUTION.rst file in this directory, or
|
141
|
-
specifications in the specs/ sub-directory.
|
142
|
-
|
143
|
-
The project roadmap is available at
|
144
|
-
https://wiki.openstack.org/wiki/Octavia/Roadmap
|
145
|
-
|
146
|
-
External Resources
|
147
|
-
~~~~~~~~~~~~~~~~~~
|
148
|
-
|
149
|
-
* Octavia Wiki: https://wiki.openstack.org/wiki/Octavia
|
150
|
-
|
151
|
-
* For help on usage and hacking of Octavia, please send an email to
|
152
|
-
OpenStack-dev Mailing List <mailto:openstack-discuss@lists.openstack.org>
|
153
|
-
with **[Octavia]** tag.
|
154
|
-
|
155
|
-
|
156
|
-
|
@@ -1 +0,0 @@
|
|
1
|
-
{"git_version": "dda68b1c", "is_release": true}
|
File without changes
|
File without changes
|
{octavia-15.0.0.0rc1.data → octavia-16.0.0.0rc1.data}/data/share/octavia/diskimage-create/README.rst
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|