Merge pull request #23 from bparees/param

parameterize the db image name
This commit is contained in:
Michal Fojtik 2015-08-03 10:37:20 +02:00
commit 2a7e09f47e

View file

@ -249,7 +249,7 @@
"containers": [ "containers": [
{ {
"name": "postgresql", "name": "postgresql",
"image": "openshift/postgresql-92-centos7", "image": "${POSTGRESQL_IMAGE}",
"ports": [ "ports": [
{ {
"containerPort": 5432 "containerPort": 5432
@ -327,6 +327,11 @@
"generate": "expression", "generate": "expression",
"from": "[a-zA-Z0-9]{16}" "from": "[a-zA-Z0-9]{16}"
}, },
{
"name": "POSTGRESQL_IMAGE",
"description": "Image to use for postgresql",
"value": "openshift/postgresql-92-centos7"
},
{ {
"name": "APP_CONFIG", "name": "APP_CONFIG",
"description": "Relative path to Gunicorn configuration file (optional)" "description": "Relative path to Gunicorn configuration file (optional)"