blueprint quantum-lbaas

This implements the UI for quantum lbaas. Add/Delete Pool, Vip, Member,
PoolMonitor for lbaas is implemented.

Expected future extensions:
1. Update Vip/Pool/Member
2. Use of floating IP as VIP

Change-Id: Icde452b97a5e02d2381b996350b13aba3d87bb8e
This commit is contained in:
KC Wang 2013-02-07 18:15:16 -08:00
parent 8dd26aacb8
commit 73c0ae5b0f
2 changed files with 14 additions and 8 deletions

View File

@ -5,6 +5,7 @@
# All Rights Reserved. # All Rights Reserved.
# #
# Copyright 2012 Nebula, Inc. # Copyright 2012 Nebula, Inc.
# Copyright 2013 Big Switch Networks
# #
# Licensed under the Apache License, Version 2.0 (the "License"); you may # 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 # not use this file except in compliance with the License. You may obtain
@ -32,11 +33,12 @@ In other words, Horizon developers not working on openstack_dashboard.api
shouldn't need to understand the finer details of APIs for shouldn't need to understand the finer details of APIs for
Keystone/Nova/Glance/Swift et. al. Keystone/Nova/Glance/Swift et. al.
""" """
import base from openstack_dashboard.api import base
import cinder from openstack_dashboard.api import cinder
import glance from openstack_dashboard.api import glance
import keystone from openstack_dashboard.api import keystone
import network from openstack_dashboard.api import network
import nova from openstack_dashboard.api import nova
import quantum from openstack_dashboard.api import quantum
import swift from openstack_dashboard.api import lbaas
from openstack_dashboard.api import swift

View File

@ -74,6 +74,10 @@ OPENSTACK_KEYSTONE_BACKEND = {
'can_edit_project': True 'can_edit_project': True
} }
OPENSTACK_QUANTUM_NETWORK = {
'enable_lb': True
}
OPENSTACK_HYPERVISOR_FEATURES = { OPENSTACK_HYPERVISOR_FEATURES = {
'can_set_mount_point': True, 'can_set_mount_point': True,