Added routes to templates

This commit is contained in:
sspeiche 2015-06-08 15:31:12 -04:00
parent 8a5a2cb4d8
commit aa79a05018
2 changed files with 40 additions and 0 deletions

View File

@ -57,6 +57,21 @@
}
}
},
{
"kind": "Route",
"apiVersion": "v1beta3",
"metadata": {
"name": "${FRONTEND_SERVICE_NAME}-route",
"creationTimestamp": null
},
"spec": {
"host" : "${FRONTEND_ROUTE}",
"to": {
"kind" : "Service",
"name" : "${FRONTEND_SERVICE_NAME}"
}
}
},
{
"kind": "BuildConfig",
"apiVersion": "v1beta3",
@ -297,6 +312,11 @@
"description": "Frontend service name",
"value": "django"
},
{
"name": "FRONTEND_ROUTE",
"description": "The exposed hostname that will route to the frontend service",
"value": "django-frontend.apps"
},
{
"name": "DATABASE_SERVICE_NAME",
"description": "Database service name",

View File

@ -35,6 +35,21 @@
}
}
},
{
"kind": "Route",
"apiVersion": "v1beta3",
"metadata": {
"name": "${FRONTEND_SERVICE_NAME}-route",
"creationTimestamp": null
},
"spec": {
"host" : "${FRONTEND_ROUTE}",
"to": {
"kind" : "Service",
"name" : "${FRONTEND_SERVICE_NAME}"
}
}
},
{
"kind": "BuildConfig",
"apiVersion": "v1beta3",
@ -204,6 +219,11 @@
"name": "DATABASE_SERVICE_NAME",
"description": "Database service name"
},
{
"name": "FRONTEND_ROUTE",
"description": "The exposed hostname that will route to the frontend service",
"value": "django-frontend.apps"
},
{
"name": "DATABASE_ENGINE",
"description": "Database engine: postgresql, mysql or sqlite (default)"