Skip to content

Commit 107c74d

Browse files
authored
Merge pull request #99 from jim-minter/issue16726
remove expose annotations from quickstarts and add bindable: false
2 parents 0ff8fb3 + e550e39 commit 107c74d

File tree

2 files changed

+8
-20
lines changed

2 files changed

+8
-20
lines changed

openshift/templates/rails-postgresql-persistent.json

+4-10
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
"openshift.io/long-description": "This template defines resources needed to develop a Rails application, including a build configuration, application deployment configuration, and database deployment configuration.",
1212
"openshift.io/provider-display-name": "Red Hat, Inc.",
1313
"openshift.io/documentation-url": "https://github.com/openshift/rails-ex",
14-
"openshift.io/support-url": "https://access.redhat.com"
14+
"openshift.io/support-url": "https://access.redhat.com",
15+
"template.openshift.io/bindable": "false"
1516
}
1617
},
1718
"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.",
@@ -23,11 +24,7 @@
2324
"kind": "Secret",
2425
"apiVersion": "v1",
2526
"metadata": {
26-
"name": "${NAME}",
27-
"annotations": {
28-
"template.openshift.io/expose-username": "{.data['application-user']}",
29-
"template.openshift.io/expose-password": "{.data['application-password']}"
30-
}
27+
"name": "${NAME}"
3128
},
3229
"stringData" : {
3330
"database-user" : "${DATABASE_USER}",
@@ -64,10 +61,7 @@
6461
"kind": "Route",
6562
"apiVersion": "v1",
6663
"metadata": {
67-
"name": "${NAME}",
68-
"annotations": {
69-
"template.openshift.io/expose-uri": "http://{.spec.host}{.spec.path}"
70-
}
64+
"name": "${NAME}"
7165
},
7266
"spec": {
7367
"host": "${APPLICATION_DOMAIN}",

openshift/templates/rails-postgresql.json

+4-10
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
"openshift.io/long-description": "This template defines resources needed to develop a Rails application, including a build configuration, application deployment configuration, and database deployment configuration. The database is stored in non-persistent storage, so this configuration should be used for experimental purposes only.",
1212
"openshift.io/provider-display-name": "Red Hat, Inc.",
1313
"openshift.io/documentation-url": "https://github.com/openshift/rails-ex",
14-
"openshift.io/support-url": "https://access.redhat.com"
14+
"openshift.io/support-url": "https://access.redhat.com",
15+
"template.openshift.io/bindable": "false"
1516
}
1617
},
1718
"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.",
@@ -23,11 +24,7 @@
2324
"kind": "Secret",
2425
"apiVersion": "v1",
2526
"metadata": {
26-
"name": "${NAME}",
27-
"annotations": {
28-
"template.openshift.io/expose-username": "{.data['application-user']}",
29-
"template.openshift.io/expose-password": "{.data['application-password']}"
30-
}
27+
"name": "${NAME}"
3128
},
3229
"stringData" : {
3330
"database-user" : "${DATABASE_USER}",
@@ -64,10 +61,7 @@
6461
"kind": "Route",
6562
"apiVersion": "v1",
6663
"metadata": {
67-
"name": "${NAME}",
68-
"annotations": {
69-
"template.openshift.io/expose-uri": "http://{.spec.host}{.spec.path}"
70-
}
64+
"name": "${NAME}"
7165
},
7266
"spec": {
7367
"host": "${APPLICATION_DOMAIN}",

0 commit comments

Comments
 (0)