File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -564,8 +564,9 @@ export class Message {
564564 containers : [
565565 {
566566 name : 'nodered' ,
567- image : 'cloudhack/openflownodered:0.0.239 ' ,
567+ image : 'cloudhack/openflownodered:0.0.240 ' ,
568568 imagePullPolicy : "Always" ,
569+ ports : [ { containerPort : 80 } ] ,
569570 env : [
570571 { name : "saml_federation_metadata" , value : Config . saml_federation_metadata } ,
571572 { name : "saml_issuer" , value : Config . saml_issuer } ,
@@ -580,7 +581,18 @@ export class Message {
580581 { name : "port" , value : Config . port . toString ( ) } ,
581582 { name : "noderedusers" , value : ( name + "noderedusers" ) } ,
582583 { name : "noderedadmins" , value : ( name + "noderedadmins" ) } ,
583- ]
584+ ] ,
585+ livenessProbe : {
586+ httpGet : {
587+ path : "/" ,
588+ port : 80 ,
589+ scheme : "HTTP"
590+ } ,
591+ initialDelaySeconds : 30 ,
592+ periodSeconds : 5 ,
593+ failureThreshold : 5 ,
594+ timeoutSeconds : 5
595+ } ,
584596 }
585597 ]
586598 }
Original file line number Diff line number Diff line change 1- 0.0.239
1+ 0.0.240
You can’t perform that action at this time.
0 commit comments