Changing the service-type to load-balancer

Per the discussion in the service-types-authority repository [1]
updating octavia to use "load-balancer" as the service type.

[1] https://review.openstack.org/#/c/434999/

Change-Id: I4faa327c064f6291c578d3e04f8ee8624940ce08
This commit is contained in:
Michael Johnson 2017-03-28 11:10:41 -07:00
parent 3eedc728f1
commit 583c7f7382
3 changed files with 3 additions and 3 deletions

View File

@ -65,7 +65,7 @@ function create_octavia_accounts {
create_service_user "octavia"
local octavia_service=$(get_or_create_service "octavia" \
"load-balancing" "Octavia Load Balancing Service")
"load-balancer" "Octavia Load Balancing Service")
get_or_create_endpoint $octavia_service \
"$REGION_NAME" \
"$OCTAVIA_PROTOCOL://$SERVICE_HOST:$OCTAVIA_PORT/" \

View File

@ -74,7 +74,7 @@ class BaseTestCase(manager.NetworkScenarioTest):
auth_provider = mgr.auth_provider
region = config.network.region or config.identity.region
self.client_args = [auth_provider, 'load-balancing', region]
self.client_args = [auth_provider, 'load-balancer', region]
self.load_balancers_client = (
load_balancers_client.LoadBalancersClient(*self.client_args))
self.listeners_client = (

View File

@ -76,7 +76,7 @@ class BaseTestCase(manager.NetworkScenarioTest):
auth_provider = mgr.auth_provider
region = config.network.region or config.identity.region
self.client_args = [auth_provider, 'load-balancing', region]
self.client_args = [auth_provider, 'load-balancer', region]
self.load_balancers_client = (
load_balancers_client.LoadBalancersClient(*self.client_args))
self.listeners_client = (