def loadbalancer_manager(self): if hasattr(self, '_loadbalancer_manager'): return self._loadbalancer_manager self._loadbalancer_manager = loadbalancer.LoadbalancerManager(self.api) return self._loadbalancer_manager
def __init__(self): admin_user = cfg.CONF.keystone_authtoken.admin_user admin_password = cfg.CONF.keystone_authtoken.admin_password admin_tenant_name = cfg.CONF.keystone_authtoken.admin_tenant_name api_srvr_ip = cfg.CONF.APISERVER.api_server_ip api_srvr_port = cfg.CONF.APISERVER.api_server_port try: auth_host = cfg.CONF.keystone_authtoken.auth_host except cfg.NoSuchOptError: auth_host = "127.0.0.1" try: auth_protocol = cfg.CONF.keystone_authtoken.auth_protocol except cfg.NoSuchOptError: auth_protocol = "http" try: auth_port = cfg.CONF.keystone_authtoken.auth_port except cfg.NoSuchOptError: auth_port = "35357" try: auth_url = cfg.CONF.keystone_authtoken.auth_url except cfg.NoSuchOptError: auth_url = "/v2.0/tokens" try: auth_type = cfg.CONF.keystone_authtoken.auth_type except cfg.NoSuchOptError: auth_type = "keystone" try: api_server_url = cfg.CONF.APISERVER.api_server_url except cfg.NoSuchOptError: api_server_url = "/" # Retry till a api-server is up connected = False while not connected: try: self._api = VncApi(admin_user, admin_password, admin_tenant_name, api_srvr_ip, api_srvr_port, api_server_url, auth_host=auth_host, auth_port=auth_port, auth_protocol=auth_protocol, auth_url=auth_url, auth_type=auth_type, wait_for_connect=True) connected = True except requests.exceptions.RequestException: time.sleep(3) self._pool_manager = \ loadbalancer_pool.LoadbalancerPoolManager(self._api) self._loadbalancer_manager = loadbalancer.LoadbalancerManager(self._api) self._listener_manager = listener.ListenerManager(self._api) self._member_manager = \ loadbalancer_member.LoadbalancerMemberManager(self._api) self._monitor_manager = \ loadbalancer_healthmonitor.LoadbalancerHealthmonitorManager( self._api)