-
Notifications
You must be signed in to change notification settings - Fork 4.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add app label to example templates #17224
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
"metadata": { | ||
"name": "jenkins-persistent", | ||
"annotations": { | ||
"openshift.io/display-name": "Jenkins (Persistent)", | ||
"openshift.io/display-name": "Jenkins", | ||
"description": "Jenkins service, with persistent storage.\n\nNOTE: You must have persistent volumes available in your cluster to use this template.", | ||
"iconClass": "icon-jenkins", | ||
"tags": "instant-app,jenkins", | ||
|
@@ -15,6 +15,9 @@ | |
} | ||
}, | ||
"message": "A Jenkins service has been created in your project. Log into Jenkins with your OpenShift account. The tutorial at https://github.com/openshift/origin/blob/master/examples/jenkins/README.md contains more information about using this template.", | ||
"labels": { | ||
"app": "jenkins-persistent" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The app label should be parameterized so that when a DB template is used with another application and we want to associate it with that app we can. |
||
}, | ||
"objects": [ | ||
{ | ||
"kind": "Route", | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
"metadata": { | ||
"name": "cakephp-mysql-persistent", | ||
"annotations": { | ||
"openshift.io/display-name": "CakePHP + MySQL (Persistent)", | ||
"openshift.io/display-name": "CakePHP + MySQL", | ||
"description": "An example CakePHP application with a MySQL database. For more information about using this template, including OpenShift considerations, see https://github.com/openshift/cakephp-ex/blob/master/README.md.", | ||
"tags": "quickstart,php,cakephp", | ||
"iconClass": "icon-php", | ||
|
@@ -16,7 +16,8 @@ | |
}, | ||
"message": "The following service(s) have been created in your project: ${NAME}, ${DATABASE_SERVICE_NAME}.\n\nFor more information about using this template, including OpenShift considerations, see https://github.com/openshift/cake-ex/blob/master/README.md.", | ||
"labels": { | ||
"template": "cakephp-mysql-persistent" | ||
"template": "cakephp-mysql-persistent", | ||
"app": "cakephp-mysql-persistent" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The app label should be parameterized so that when templates are used in conjunction to form a single application we can make the |
||
}, | ||
"objects": [ | ||
{ | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,8 @@ | |
}, | ||
"message": "The following service(s) have been created in your project: ${NAME}, ${DATABASE_SERVICE_NAME}.\n\nFor more information about using this template, including OpenShift considerations, see https://github.com/openshift/cake-ex/blob/master/README.md.", | ||
"labels": { | ||
"template": "cakephp-mysql-example" | ||
"template": "cakephp-mysql-example", | ||
"app": "cakephp-mysql-example" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The app label should be parameterized so that when templates are used in conjunction to form a single application we can make the |
||
}, | ||
"objects": [ | ||
{ | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
"metadata": { | ||
"name": "dancer-mysql-persistent", | ||
"annotations": { | ||
"openshift.io/display-name": "Dancer + MySQL (Persistent)", | ||
"openshift.io/display-name": "Dancer + MySQL", | ||
"description": "An example Dancer application with a MySQL database. For more information about using this template, including OpenShift considerations, see https://github.com/openshift/dancer-ex/blob/master/README.md.", | ||
"tags": "quickstart,perl,dancer", | ||
"iconClass": "icon-perl", | ||
|
@@ -16,7 +16,8 @@ | |
}, | ||
"message": "The following service(s) have been created in your project: ${NAME}, ${DATABASE_SERVICE_NAME}.\n\nFor more information about using this template, including OpenShift considerations, see https://github.com/openshift/dancer-ex/blob/master/README.md.", | ||
"labels": { | ||
"template": "dancer-mysql-persistent" | ||
"template": "dancer-mysql-persistent", | ||
"app": "dancer-mysql-persistent" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The app label should be parameterized so that when templates are used in conjunction to form a single application we can make the |
||
}, | ||
"objects": [ | ||
{ | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,8 @@ | |
}, | ||
"message": "The following service(s) have been created in your project: ${NAME}, ${DATABASE_SERVICE_NAME}.\n\nFor more information about using this template, including OpenShift considerations, see https://github.com/openshift/dancer-ex/blob/master/README.md.", | ||
"labels": { | ||
"template": "dancer-mysql-example" | ||
"template": "dancer-mysql-example", | ||
"app": "dancer-mysql-example" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The app label should be parameterized so that when templates are used in conjunction to form a single application we can make the |
||
}, | ||
"objects": [ | ||
{ | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
"metadata": { | ||
"name": "django-psql-persistent", | ||
"annotations": { | ||
"openshift.io/display-name": "Django + PostgreSQL (Persistent)", | ||
"openshift.io/display-name": "Django + PostgreSQL", | ||
"description": "An example Django application with a PostgreSQL database. For more information about using this template, including OpenShift considerations, see https://github.com/openshift/django-ex/blob/master/README.md.", | ||
"tags": "quickstart,python,django", | ||
"iconClass": "icon-python", | ||
|
@@ -16,7 +16,8 @@ | |
}, | ||
"message": "The following service(s) have been created in your project: ${NAME}, ${DATABASE_SERVICE_NAME}.\n\nFor more information about using this template, including OpenShift considerations, see https://github.com/openshift/django-ex/blob/master/README.md.", | ||
"labels": { | ||
"template": "django-psql-persistent" | ||
"template": "django-psql-persistent", | ||
"app": "django-psql-persistent" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The app label should be parameterized so that when templates are used in conjunction to form a single application we can make the |
||
}, | ||
"objects": [ | ||
{ | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,8 @@ | |
}, | ||
"message": "The following service(s) have been created in your project: ${NAME}, ${DATABASE_SERVICE_NAME}.\n\nFor more information about using this template, including OpenShift considerations, see https://github.com/openshift/django-ex/blob/master/README.md.", | ||
"labels": { | ||
"template": "django-psql-example" | ||
"template": "django-psql-example", | ||
"app": "django-psql-example" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The app label should be parameterized so that when templates are used in conjunction to form a single application we can make the |
||
}, | ||
"objects": [ | ||
{ | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,8 @@ | |
}, | ||
"message": "The following service(s) have been created in your project: ${NAME}.\n\nFor more information about using this template, including OpenShift considerations, see https://github.com/openshift/httpd-ex/blob/master/README.md.", | ||
"labels": { | ||
"template": "httpd-example" | ||
"template": "httpd-example", | ||
"app": "httpd-example" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The app label should be parameterized so that when templates are used in conjunction to form a single application we can make the |
||
}, | ||
"objects": [ | ||
{ | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
"metadata": { | ||
"name": "nodejs-mongo-persistent", | ||
"annotations": { | ||
"openshift.io/display-name": "Node.js + MongoDB (Persistent)", | ||
"openshift.io/display-name": "Node.js + MongoDB", | ||
"description": "An example Node.js application with a MongoDB database. For more information about using this template, including OpenShift considerations, see https://github.com/openshift/nodejs-ex/blob/master/README.md.", | ||
"tags": "quickstart,nodejs", | ||
"iconClass": "icon-nodejs", | ||
|
@@ -16,7 +16,8 @@ | |
}, | ||
"message": "The following service(s) have been created in your project: ${NAME}, ${DATABASE_SERVICE_NAME}.\n\nFor more information about using this template, including OpenShift considerations, see https://github.com/openshift/nodejs-ex/blob/master/README.md.", | ||
"labels": { | ||
"template": "nodejs-mongo-persistent" | ||
"template": "nodejs-mongo-persistent", | ||
"app": "nodejs-mongo-persistent" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The app label should be parameterized so that when templates are used in conjunction to form a single application we can make the |
||
}, | ||
"objects": [ | ||
{ | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,8 @@ | |
}, | ||
"message": "The following service(s) have been created in your project: ${NAME}, ${DATABASE_SERVICE_NAME}.\n\nFor more information about using this template, including OpenShift considerations, see https://github.com/openshift/nodejs-ex/blob/master/README.md.", | ||
"labels": { | ||
"template": "nodejs-mongodb-example" | ||
"template": "nodejs-mongodb-example", | ||
"app": "nodejs-mongodb-example" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The app label should be parameterized so that when templates are used in conjunction to form a single application we can make the |
||
}, | ||
"objects": [ | ||
{ | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
"metadata": { | ||
"name": "rails-pgsql-persistent", | ||
"annotations": { | ||
"openshift.io/display-name": "Rails + PostgreSQL (Persistent)", | ||
"openshift.io/display-name": "Rails + PostgreSQL", | ||
"description": "An example Rails application with a PostgreSQL database. For more information about using this template, including OpenShift considerations, see https://github.com/openshift/rails-ex/blob/master/README.md.", | ||
"tags": "quickstart,ruby,rails", | ||
"iconClass": "icon-ruby", | ||
|
@@ -16,7 +16,8 @@ | |
}, | ||
"message": "The following service(s) have been created in your project: ${NAME}, ${DATABASE_SERVICE_NAME}.\n\nFor more information about using this template, including OpenShift considerations, see https://github.com/openshift/rails-ex/blob/master/README.md.", | ||
"labels": { | ||
"template": "rails-pgsql-persistent" | ||
"template": "rails-pgsql-persistent", | ||
"app": "rails-pgsql-persistent" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The app label should be parameterized so that when templates are used in conjunction to form a single application we can make the |
||
}, | ||
"objects": [ | ||
{ | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,8 @@ | |
}, | ||
"message": "The following service(s) have been created in your project: ${NAME}, ${DATABASE_SERVICE_NAME}.\n\nFor more information about using this template, including OpenShift considerations, see https://github.com/openshift/rails-ex/blob/master/README.md.", | ||
"labels": { | ||
"template": "rails-postgresql-example" | ||
"template": "rails-postgresql-example", | ||
"app": "rails-postgresql-example" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The app label should be parameterized so that when templates are used in conjunction to form a single application we can make the |
||
}, | ||
"objects": [ | ||
{ | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The app label should be parameterized so that when a DB template is used with another application and we want to associate it with that app we can.