Browse Source

Merge pull request #119 from pkubatrh/psql_check

Use postgresql's readycheck in templates
pull/121/head
Petr Kubat 7 years ago
committed by GitHub
parent
commit
2cb1d55a70
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 10 deletions
  1. +5
    -5
      openshift/templates/django-postgresql-persistent.json
  2. +5
    -5
      openshift/templates/django-postgresql.json

+ 5
- 5
openshift/templates/django-postgresql-persistent.json View File

@ -400,14 +400,14 @@
"timeoutSeconds": 1, "timeoutSeconds": 1,
"initialDelaySeconds": 5, "initialDelaySeconds": 5,
"exec": { "exec": {
"command": [ "/bin/sh", "-i", "-c", "psql -h 127.0.0.1 -U ${POSTGRESQL_USER} -q -d ${POSTGRESQL_DATABASE} -c 'SELECT 1'"]
"command": [ "/usr/libexec/check-container" ]
} }
}, },
"livenessProbe": { "livenessProbe": {
"timeoutSeconds": 1,
"initialDelaySeconds": 30,
"tcpSocket": {
"port": 5432
"timeoutSeconds": 10,
"initialDelaySeconds": 120,
"exec": {
"command": [ "/usr/libexec/check-container", "--live" ]
} }
}, },
"resources": { "resources": {


+ 5
- 5
openshift/templates/django-postgresql.json View File

@ -381,14 +381,14 @@
"timeoutSeconds": 1, "timeoutSeconds": 1,
"initialDelaySeconds": 5, "initialDelaySeconds": 5,
"exec": { "exec": {
"command": [ "/bin/sh", "-i", "-c", "psql -h 127.0.0.1 -U ${POSTGRESQL_USER} -q -d ${POSTGRESQL_DATABASE} -c 'SELECT 1'"]
"command": [ "/usr/libexec/check-container" ]
} }
}, },
"livenessProbe": { "livenessProbe": {
"timeoutSeconds": 1,
"initialDelaySeconds": 30,
"tcpSocket": {
"port": 5432
"timeoutSeconds": 10,
"initialDelaySeconds": 120,
"exec": {
"command": [ "/usr/libexec/check-container", "--live" ]
} }
}, },
"resources": { "resources": {


Loading…
Cancel
Save