Use postgresql's readycheck in templates
This commit is contained in:
parent
c5fcbb2df6
commit
e302ab80f4
2 changed files with 10 additions and 10 deletions
|
@ -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,
|
"timeoutSeconds": 10,
|
||||||
"initialDelaySeconds": 30,
|
"initialDelaySeconds": 120,
|
||||||
"tcpSocket": {
|
"exec": {
|
||||||
"port": 5432
|
"command": [ "/usr/libexec/check-container", "--live" ]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"resources": {
|
"resources": {
|
||||||
|
|
|
@ -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,
|
"timeoutSeconds": 10,
|
||||||
"initialDelaySeconds": 30,
|
"initialDelaySeconds": 120,
|
||||||
"tcpSocket": {
|
"exec": {
|
||||||
"port": 5432
|
"command": [ "/usr/libexec/check-container", "--live" ]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"resources": {
|
"resources": {
|
||||||
|
|
Loading…
Reference in a new issue