
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
17 lines
328 B
JavaScript
17 lines
328 B
JavaScript
angular.module("kubernetesApp.config", [])
|
|
|
|
.constant("ENV", {
|
|
"/": {
|
|
"k8sApiServer": "/api/v1beta2",
|
|
"k8sDataServer": "/cluster",
|
|
"k8sDataPollMinIntervalSec": 10,
|
|
"k8sDataPollMaxIntervalSec": 120,
|
|
"k8sDataPollErrorThreshold": 5,
|
|
"cAdvisorProxy": "",
|
|
"cAdvisorPort": "4194"
|
|
}
|
|
})
|
|
|
|
.constant("ngConstant", true)
|
|
|
|
; |