mirror of
https://opendev.org/openstack/python-openstackclient.git
synced 2026-01-17 07:20:45 +00:00
Introduce the hints port attribute that allows passing in backend
specific hints mainly to allow backend specific performance tuning.
Enable:
openstack port create --hint ALIAS=VALUE
openstack port set --hint ALIAS=VALUE
openstack port unset --hints
Required neutron extension:
port-hints
port-hint-ovs-tx-steering
Valid hint aliases and values:
ovs-tx-steering=hash
ovs-tx-steering=thread
The same hints in JSON format, as expected by the Neutron API:
{"openvswitch": {"other_config": {"tx-steering": "hash"}}}
{"openvswitch": {"other_config": {"tx-steering": "thread"}}}
Change-Id: I4c7142909b1e4fb26fc77ad9ba08ec994cc450b2
Depends-On: https://review.opendev.org/c/openstack/neutron/+/873113
Partial-Bug: #1990842
Related-Change (server side): https://review.opendev.org/c/openstack/neutron/+/873113
Related-Change (spec): https://review.opendev.org/c/openstack/neutron-specs/+/862133
|
||
|---|---|---|
| .. | ||
| __init__.py | ||
| address_group.py | ||
| address_scope.py | ||
| floating_ip.py | ||
| floating_ip_pool.py | ||
| floating_ip_port_forwarding.py | ||
| ip_availability.py | ||
| l3_conntrack_helper.py | ||
| local_ip.py | ||
| local_ip_association.py | ||
| ndp_proxy.py | ||
| network.py | ||
| network_agent.py | ||
| network_auto_allocated_topology.py | ||
| network_flavor.py | ||
| network_flavor_profile.py | ||
| network_meter.py | ||
| network_meter_rule.py | ||
| network_qos_policy.py | ||
| network_qos_rule.py | ||
| network_qos_rule_type.py | ||
| network_rbac.py | ||
| network_segment.py | ||
| network_segment_range.py | ||
| network_service_provider.py | ||
| network_trunk.py | ||
| port.py | ||
| router.py | ||
| security_group.py | ||
| security_group_rule.py | ||
| subnet.py | ||
| subnet_pool.py | ||