# Copyright 2016 Rackspace 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. from oslo_config import cfg """ For running Octavia tests, it is assumed that the following option is defined in the [service_available] section of etc/tempest.conf octavia = True """ service_option = cfg.BoolOpt('octavia', default=False, help="Whether or not Octavia is expected to be " "available"), octavia_group = cfg.OptGroup(name='octavia', title='Octavia Service') OctaviaGroup = [ cfg.StrOpt('catalog_type', default='network', help='Catalog type of the Octavia service.'), cfg.IntOpt('lb_build_interval', default=15, help='Time in seconds between build status checks.'), cfg.IntOpt('lb_build_timeout', default=900, help='Timeout in seconds to wait for a ' 'load balancer to build.'), ]