Chapter 6. Configuring Load-balancing service flavors
Load-balancing service (octavia) flavors are sets of provider configuration options that you create. When users request load balancers, they can specify that the load balancer be built using one of the defined flavors. You define a flavor for each load-balancing provider driver, which exposes the unique capabilities of the respective provider.
To create a new Load-balancing service flavor:
- Decide which capabilities of the load-balancing provider you want to configure in the flavor.
- Create the flavor profile with the flavor capabilities you have chosen.
Create the flavor.
6.1. Listing Load-balancing service provider capabilities
You can review the list of capabilities that each Load-balancing service (octavia) provider driver exposes.
Procedure
Source a credentials file that gives you access to the overcloud with the RHOSP admin role.
Example
Copy to Clipboard Copied! Toggle word wrap Toggle overflow source ~/my_overcloudrc
$ source ~/my_overcloudrc
List the capabilities for each driver:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow openstack loadbalancer provider capability list <provider>
$ openstack loadbalancer provider capability list <provider>
Replace
<provider>
with the name or UUID of the provider.Example
Copy to Clipboard Copied! Toggle word wrap Toggle overflow openstack loadbalancer provider capability list amphora
$ openstack loadbalancer provider capability list amphora
The command output lists all of the capabilities that the provider supports.
Sample output
Copy to Clipboard Copied! Toggle word wrap Toggle overflow +-----------------------+---------------------------------------------------+ | name | description | +-----------------------+---------------------------------------------------+ | loadbalancer_topology | The load balancer topology. One of: SINGLE - One | | | amphora per load balancer. ACTIVE_STANDBY - Two | | | amphora per load balancer. | | ... | ... | +-----------------------+---------------------------------------------------+
+-----------------------+---------------------------------------------------+ | name | description | +-----------------------+---------------------------------------------------+ | loadbalancer_topology | The load balancer topology. One of: SINGLE - One | | | amphora per load balancer. ACTIVE_STANDBY - Two | | | amphora per load balancer. | | ... | ... | +-----------------------+---------------------------------------------------+
- Note the names of the capabilities that you want to include in the flavor that you are creating.
Additional resources
- Section 6.2, “Defining flavor profiles”
- loadbalancer provider capability list in the Command Line Interface Reference
6.2. Defining flavor profiles
Load-balancing service (octavia) flavor profiles contain the provider driver name and a list of capabilities. You use flavor profiles to create flavors that users specify to create a load balancer.
Prerequisites
- You must know which load-balancing provider and which of its capabilities you want to include in the flavor profile.
Procedure
Source a credentials file that gives you access to the overcloud with the RHOSP admin role.
Example
Copy to Clipboard Copied! Toggle word wrap Toggle overflow source ~/my_overcloudrc
$ source ~/my_overcloudrc
Create a flavor profile:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow openstack loadbalancer flavorprofile create --name <profile_name> --provider <provider_name> --flavor-data '{"<capability>": "<value>"}'
$ openstack loadbalancer flavorprofile create --name <profile_name> --provider <provider_name> --flavor-data '{"<capability>": "<value>"}'
Example
Copy to Clipboard Copied! Toggle word wrap Toggle overflow openstack loadbalancer flavorprofile create --name amphora-single-profile --provider amphora --flavor-data '{"loadbalancer_topology": "SINGLE"}'
$ openstack loadbalancer flavorprofile create --name amphora-single-profile --provider amphora --flavor-data '{"loadbalancer_topology": "SINGLE"}'
Sample output
Copy to Clipboard Copied! Toggle word wrap Toggle overflow +---------------+--------------------------------------+ | Field | Value | +---------------+--------------------------------------+ | id | 72b53ac2-b191-48eb-8f73-ed012caca23a | | name | amphora-single-profile | | provider_name | amphora | | flavor_data | {"loadbalancer_topology": "SINGLE"} | +---------------+--------------------------------------+
+---------------+--------------------------------------+ | Field | Value | +---------------+--------------------------------------+ | id | 72b53ac2-b191-48eb-8f73-ed012caca23a | | name | amphora-single-profile | | provider_name | amphora | | flavor_data | {"loadbalancer_topology": "SINGLE"} | +---------------+--------------------------------------+
In this example, a flavor profile is created for the amphora provider. When this profile is specified in a flavor, the load balancer that users create by using the flavor is a single amphora load balancer.
Verification
- When you create a flavor profile, the Load-balancing service validates the flavor values with the provider to ensure that the provider can support the capabilities that you have specified.
Additional resources
- Section 6.3, “Creating Load-balancing service flavors”
- loadbalancer flavorprofile create in the Command Line Interface Reference
6.3. Creating Load-balancing service flavors
You create a user-facing flavor for the Load-balancing service (octavia) by using a flavor profile. The name that you assign to the flavor is the value that users specify when they create a load balancer.
Prerequisites
- You must have created a flavor profile.
Procedure
Source a credentials file that gives you access to the overcloud with the RHOSP admin role.
Example
Copy to Clipboard Copied! Toggle word wrap Toggle overflow source ~/my_overcloudrc
$ source ~/my_overcloudrc
Create a flavor:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow openstack loadbalancer flavor create --name <flavor_name> \ --flavorprofile <flavor-profile> --description "<string>"
$ openstack loadbalancer flavor create --name <flavor_name> \ --flavorprofile <flavor-profile> --description "<string>"
TipProvide a detailed description so that users can understand the capabilities of the flavor that you are providing.
Example
Copy to Clipboard Copied! Toggle word wrap Toggle overflow openstack loadbalancer flavor create --name standalone-lb --flavorprofile amphora-single-profile --description "A non-high availability load balancer for testing."
$ openstack loadbalancer flavor create --name standalone-lb --flavorprofile amphora-single-profile --description "A non-high availability load balancer for testing."
Sample output
Copy to Clipboard Copied! Toggle word wrap Toggle overflow +-------------------+--------------------------------------+ | Field | Value | +-------------------+--------------------------------------+ | id | 25cda2d8-f735-4744-b936-d30405c05359 | | name | standalone-lb | | flavor_profile_id | 72b53ac2-b191-48eb-8f73-ed012caca23a | | enabled | True | | description | A non-high availability load | | | balancer for testing. | +-------------------+--------------------------------------+
+-------------------+--------------------------------------+ | Field | Value | +-------------------+--------------------------------------+ | id | 25cda2d8-f735-4744-b936-d30405c05359 | | name | standalone-lb | | flavor_profile_id | 72b53ac2-b191-48eb-8f73-ed012caca23a | | enabled | True | | description | A non-high availability load | | | balancer for testing. | +-------------------+--------------------------------------+
In this example, a flavor has been defined. When users specify this flavor, they create a load balancer that uses one Load-balancing service instance (amphora) and is not highly available.
Disabled flavors are still visible to users, but users cannot use the disabled flavor to create a load balancer.
Additional resources
- Section 6.2, “Defining flavor profiles”
- loadbalancer flavor create in the Command Line Interface Reference