File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ export class Config {
5757 public static api_ws_url : string = Config . getEnv ( "api_ws_url" , "ws://localhost:3000" ) ;
5858 public static namespace : string = Config . getEnv ( "namespace" , "" ) ; // also sent to website
5959 public static nodered_domain_schema : string = Config . getEnv ( "nodered_domain_schema" , "" ) ; // also sent to website
60- public static nodered_initial_liveness_delay : string = Config . getEnv ( "nodered_initial_liveness_delay" , "60" ) ; // also sent to website
60+ public static nodered_initial_liveness_delay : number = parseInt ( Config . getEnv ( "nodered_initial_liveness_delay" , "60" ) ) ;
6161
6262 public static baseurl ( ) : string {
6363 var result : string = "" ;
Original file line number Diff line number Diff line change @@ -827,6 +827,7 @@ export class Message {
827827 }
828828 }
829829 }
830+ // await KubeUtil.instance().ExtensionsV1beta1Api.createNamespacedDeployment(namespace, (_deployment as any));
830831 await KubeUtil . instance ( ) . ExtensionsV1beta1Api . createNamespacedDeployment ( namespace , ( _deployment as any ) ) ;
831832 }
832833 cli . _logger . debug ( "[" + cli . user . username + "] GetService" ) ;
Original file line number Diff line number Diff line change 1- 0.0.503
1+ 0.0.504
You can’t perform that action at this time.
0 commit comments