Skip to content

Commit

Permalink
mongodb openshift template: generalize probes
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Wozniak committed May 2, 2018
1 parent 8d138f9 commit 003d0ac
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions openshift/templates/nodejs-mongodb-persistent.json
Original file line number Diff line number Diff line change
Expand Up @@ -239,15 +239,15 @@
"timeoutSeconds": 3,
"initialDelaySeconds": 3,
"httpGet": {
"path": "/pagecount",
"path": "/",
"port": 8080
}
},
"livenessProbe": {
"timeoutSeconds": 3,
"initialDelaySeconds": 30,
"httpGet": {
"path": "/pagecount",
"path": "/",
"port": 8080
}
},
Expand Down
4 changes: 2 additions & 2 deletions openshift/templates/nodejs-mongodb.json
Original file line number Diff line number Diff line change
Expand Up @@ -240,15 +240,15 @@
"timeoutSeconds": 3,
"initialDelaySeconds": 3,
"httpGet": {
"path": "/pagecount",
"path": "/",
"port": 8080
}
},
"livenessProbe": {
"timeoutSeconds": 3,
"initialDelaySeconds": 30,
"httpGet": {
"path": "/pagecount",
"path": "/",
"port": 8080
}
},
Expand Down

0 comments on commit 003d0ac

Please sign in to comment.