Skip to content

Commit ae7e34f

Browse files
author
OpenShift Bot
authoredJan 27, 2017
Merge pull request #12682 from bparees/persistent_templates
Merged by openshift-bot
2 parents ae0700c + f02a0b4 commit ae7e34f

8 files changed

+5983
-348
lines changed
 

‎examples/quickstarts/README.md

+5
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,15 @@ reference and supply your forked repository as the source-repository when
1212
instantiating them.
1313

1414
* [CakePHP](https://raw.githubusercontent.com/openshift/cakephp-ex/master/openshift/templates/cakephp-mysql.json) - Provides a basic CakePHP application with a MySQL database. For more information see the [source repository](https://github.com/openshift/cakephp-ex).
15+
* [CakePHP persistent](https://raw.githubusercontent.com/openshift/cakephp-ex/master/openshift/templates/cakephp-mysql-persistent.json) - Provides a basic CakePHP application with a persistent MySQL database. Note: requires available persistent volumes. For more information see the [source repository](https://github.com/openshift/cakephp-ex).
1516
* [Dancer](https://raw.githubusercontent.com/openshift/dancer-ex/master/openshift/templates/dancer-mysql.json) - Provides a basic Dancer (Perl) application with a MySQL database. For more information see the [source repository](https://github.com/openshift/dancer-ex).
17+
* [Dancer persistent](https://raw.githubusercontent.com/openshift/dancer-ex/master/openshift/templates/dancer-mysql-persistent.json) - Provides a basic Dancer (Perl) application with a persistent MySQL database. Note: requires available persistent volumes. For more information see the [source repository](https://github.com/openshift/dancer-ex).
1618
* [Django](https://raw.githubusercontent.com/openshift/django-ex/master/openshift/templates/django-postgresql.json) - Provides a basic Django (Python) application with a PostgreSQL database. For more information see the [source repository](https://github.com/openshift/django-ex).
19+
* [Django persistent](https://raw.githubusercontent.com/openshift/django-ex/master/openshift/templates/django-postgresql-persistent.json) - Provides a basic Django (Python) application with a persistent PostgreSQL database. Note: requires available persistent volumes. For more information see the [source repository](https://github.com/openshift/django-ex).
1720
* [NodeJS](https://raw.githubusercontent.com/openshift/nodejs-ex/master/openshift/templates/nodejs-mongodb.json) - Provides a basic NodeJS application with a MongoDB database. For more information see the [source repository](https://github.com/openshift/nodejs-ex).
21+
* [NodeJS persistent](https://raw.githubusercontent.com/openshift/nodejs-ex/master/openshift/templates/nodejs-mongodb-persistent.json) - Provides a basic NodeJS application with a persistent MongoDB database. Note: requires available persistent volumes. For more information see the [source repository](https://github.com/openshift/nodejs-ex).
1822
* [Rails](https://raw.githubusercontent.com/openshift/rails-ex/master/openshift/templates/rails-postgresql.json) - Provides a basic Rails (Ruby) application with a PostgreSQL database. For more information see the [source repository](https://github.com/openshift/rails-ex).
23+
* [Rails persistent](https://raw.githubusercontent.com/openshift/rails-ex/master/openshift/templates/rails-postgresql-persistent.json) - Provides a basic Rails (Ruby) application with a persistent PostgreSQL database. Note: requires available persistent volumes. For more information see the [source repository](https://github.com/openshift/rails-ex).
1924

2025
Note: This file is processed by `hack/update-external-examples.sh`. New examples
2126
must follow the exact syntax of the existing entries. Files in this directory

‎examples/quickstarts/cakephp-mysql-persistent.json

+575
Large diffs are not rendered by default.

‎examples/quickstarts/dancer-mysql-persistent.json

+519
Large diffs are not rendered by default.

‎examples/quickstarts/django-postgresql-persistent.json

+532
Large diffs are not rendered by default.

‎examples/quickstarts/nodejs-mongodb-persistent.json

+541
Large diffs are not rendered by default.

‎examples/quickstarts/rails-postgresql-persistent.json

+598
Large diffs are not rendered by default.

‎pkg/bootstrap/bindata.go

+3,208-343
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎pkg/bootstrap/docker/up.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -102,11 +102,11 @@ var (
102102
"mariadb": "examples/db-templates/mariadb-persistent-template.json",
103103
"mysql": "examples/db-templates/mysql-persistent-template.json",
104104
"postgresql": "examples/db-templates/postgresql-persistent-template.json",
105-
"cakephp quickstart": "examples/quickstarts/cakephp-mysql.json",
106-
"dancer quickstart": "examples/quickstarts/dancer-mysql.json",
107-
"django quickstart": "examples/quickstarts/django-postgresql.json",
108-
"nodejs quickstart": "examples/quickstarts/nodejs-mongodb.json",
109-
"rails quickstart": "examples/quickstarts/rails-postgresql.json",
105+
"cakephp quickstart": "examples/quickstarts/cakephp-mysql-persistent.json",
106+
"dancer quickstart": "examples/quickstarts/dancer-mysql-persistent.json",
107+
"django quickstart": "examples/quickstarts/django-postgresql-persistent.json",
108+
"nodejs quickstart": "examples/quickstarts/nodejs-mongodb-persistent.json",
109+
"rails quickstart": "examples/quickstarts/rails-postgresql-persistent.json",
110110
"jenkins pipeline ephemeral": "examples/jenkins/jenkins-ephemeral-template.json",
111111
"jenkins pipeline persistent": "examples/jenkins/jenkins-persistent-template.json",
112112
"sample pipeline": "examples/jenkins/pipeline/samplepipeline.yaml",

0 commit comments

Comments
 (0)
Please sign in to comment.