1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
|
# Copyright (c) 2019 Red Hat, Inc.
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
[driver.amphora]
title=Amphora Provider
link=https://docs.openstack.org/api-ref/load-balancer/v2/index.html
[driver.ovn]
title=OVN Provider
link=https://docs.openstack.org/ovn-octavia-provider/latest/admin/driver.html
# Note: These should be in the order they appear in a create call.
[operation.additional_vips]
title=additional_vips
status=optional
notes=Additional VIPs to the primary one. Every additional VIP shall include the ``subnet_id`` as mandatory and the ``ip_address`` as optional. Additional VIP subnets must all belong to the same network as the primary VIP.
cli=openstack loadbalancer create [--additional-vip <additional_vip>] <load_balancer>
driver.amphora=complete
driver.ovn=complete
[operation.admin_state_up]
title=admin_state_up
status=mandatory
notes=Enables and disables the load balancer.
cli=openstack loadbalancer create [--enable | --disable] <load_balancer>
driver.amphora=complete
driver.ovn=complete
[operation.availability_zone]
title=availability_zone
status=optional
notes=The availability zone to deploy the load balancer into.
cli=openstack loadbalancer create [--availability-zone <availability_zone>] <load_balancer>
driver.amphora=complete
driver.ovn=missing
[operation.description]
title=description
status=optional
notes=The description of the load balancer. Provided by the Octavia API service.
cli=openstack loadbalancer create [--description <description>] <load_balancer>
driver.amphora=complete
driver.ovn=complete
[operation.flavor]
title=flavor
status=optional
notes=The flavor of the load balancer.
cli=openstack loadbalancer create [--flavor <flavor>] <load_balancer>
driver.amphora=complete
driver.ovn=missing
[operation.name]
title=name
status=optional
notes=The name of the load balancer. Provided by the Octavia API service.
cli=openstack loadbalancer create [--name <name>] <load_balancer>
driver.amphora=complete
driver.ovn=complete
[operation.stats]
title=Load Balancer statistics
status=mandatory
notes=The ability to show statistics for a load balancer.
cli=openstack loadbalancer stats show <load_balancer>
driver.amphora=complete
driver.ovn=missing
[operation.status]
title=Load Balancer status tree
status=mandatory
notes=The ability to show a status tree for the load balancer.
cli=openstack loadbalancer status show <load_balancer>
driver.amphora=complete
driver.ovn=complete
[operation.tags]
title=tags
status=optional
notes=The tags for the load balancer. Provided by the Octavia API service.
cli=openstack loadbalancer create [--tag <tag>] <load_balancer>
driver.amphora=complete
driver.ovn=complete
[operation.vip_address]
title=vip_address
status=optional
cli=openstack loadbalancer create [--vip-address <vip_address>] <load_balancer>
driver.amphora=complete
driver.ovn=complete
[operation.vip_network_id]
title=vip_network_id
status=optional
cli=openstack loadbalancer create [--vip-network-id <vip_network_id>] <load_balancer>
driver.amphora=complete
driver.ovn=complete
[operation.vip_port_id]
title=vip_port_id
status=optional
cli=openstack loadbalancer create [--vip-port-id <vip_port_id>] <load_balancer>
driver.amphora=complete
driver.ovn=complete
[operation.vip_qos_policy_id]
title=vip_qos_policy_id
status=optional
cli=openstack loadbalancer create [--vip-qos-policy-id <vip_qos_policy_id>] <load_balancer>
driver.amphora=complete
driver.ovn=complete
[operation.vip_subnet_id]
title=vip_subnet_id
status=optional
cli=openstack loadbalancer create [--vip-subnet-id <vip_subnet_id>] <load_balancer>
driver.amphora=complete
driver.ovn=complete
[operation.vip_sg_id]
title=vip_sg_id
status=optional
note=Optional Security Group of the VIP port (can be set multiple times).
cli=openstack loadbalancer create [--vip-sg-id <sg_id>] <load_balancer>
driver.amphora=complete
driver.ovn=missing
|