Add cluster dashboard

Change-Id: I16088518197d5b4ae1f5c4c8ff39d32f56b69421
This commit is contained in:
Zhenguo Niu 2015-08-25 23:17:12 +08:00
parent e24c1770f4
commit ed49c29e2f
4 changed files with 49 additions and 0 deletions

View File

@ -0,0 +1,24 @@
# 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 django.utils.translation import ugettext_lazy as _
import horizon
from senlin_dashboard.cluster import dashboard
class Clusters(horizon.Panel):
name = _("Clusters")
slug = "clusters"
dashboard.Cluster.register(Clusters)

View File

@ -0,0 +1,25 @@
# 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 django.utils.translation import ugettext_lazy as _
import horizon
class Cluster(horizon.Dashboard):
name = _("Cluster")
slug = "cluster"
panels = ('clusters',)
default_panel = 'clusters'
horizon.register(Cluster)