
remove node modules make new data file for web ui initial commit of dashboard switch back to non SSL request move port splitting to common place; add to node resource location Signed-off-by: Patrick Reilly <patrick@kismatic.io> various path fixes make svg path relative work around missing mime type Signed-off-by: Patrick Reilly <patrick@kismatic.io> fix paths fix karma path remove bad protractor test
61 lines
1.7 KiB
JSON
61 lines
1.7 KiB
JSON
{
|
|
"description": "The basic kubernetes ui dashboard... ",
|
|
"routes": [
|
|
{
|
|
"description": "Dashboard visualization.",
|
|
"url": "/",
|
|
"templateUrl": "components/dashboard/pages/home.html"
|
|
},
|
|
{
|
|
"description": "Pods",
|
|
"url": "/pods",
|
|
"templateUrl": "components/dashboard/views/listPods.html"
|
|
},
|
|
{
|
|
"description": "Pod Visualizer",
|
|
"url": "/visualpods",
|
|
"templateUrl": "components/dashboard/views/listPodsVisualizer.html"
|
|
},
|
|
{
|
|
"description": "Services",
|
|
"url": "/services",
|
|
"templateUrl": "components/dashboard/views/listServices.html"
|
|
},
|
|
{
|
|
"description": "Replication Controllers",
|
|
"url": "/replicationcontrollers",
|
|
"templateUrl": "components/dashboard/views/listReplicationControllers.html"
|
|
},
|
|
{
|
|
"description": "Events",
|
|
"url": "/events",
|
|
"templateUrl": "components/dashboard/views/listEvents.html"
|
|
},
|
|
{
|
|
"description": "Minions",
|
|
"url": "/minions",
|
|
"templateUrl": "components/dashboard/views/listMinions.html"
|
|
},
|
|
{
|
|
"description": "Replication Controller",
|
|
"url": "/replicationcontrollers/:replicationControllerId",
|
|
"templateUrl": "components/dashboard/views/replication.html"
|
|
},
|
|
{
|
|
"description": "Service",
|
|
"url": "/services/:serviceId",
|
|
"templateUrl": "components/dashboard/views/service.html"
|
|
},
|
|
{
|
|
"description": "Explore",
|
|
"url": "/groups/:grouping*?/selector/:selector*?",
|
|
"templateUrl": "components/dashboard/views/groups.html"
|
|
},
|
|
{
|
|
"description": "Pod",
|
|
"url": "/pods/:podId",
|
|
"templateUrl": "components/dashboard/views/pod.html"
|
|
}
|
|
]
|
|
}
|