Browse Source

add volume labels from origin version

pull/43/head
gabemontero 9 years ago
parent
commit
7d797d8b70
1 changed files with 12 additions and 0 deletions
  1. +12
    -0
      openshift/templates/django-postgresql.json

+ 12
- 0
openshift/templates/django-postgresql.json View File

@ -287,6 +287,12 @@
}
},
"spec": {
"volumes": [
{
"name": "data",
"emptyDir": {}
}
],
"containers": [
{
"name": "postgresql",
@ -310,6 +316,12 @@
"value": "${DATABASE_NAME}"
}
],
"volumeMounts": [
{
"name": "data",
"mountPath": "/var/lib/pgsql/data"
}
],
"readinessProbe": {
"timeoutSeconds": 1,
"initialDelaySeconds": 5,


Loading…
Cancel
Save