Skip to content

Commit a8af212

Browse files
Merge pull request #16925 from bparees/tsb_displayname
Automatic merge from submit-queue (batch tested with PRs 16943, 16872, 16916, 16863, 16925). strip template prefix from TSB annotations fixes #16755
2 parents 710fcf5 + 248fd24 commit a8af212

29 files changed

+310
-310
lines changed

examples/db-templates/mariadb-ephemeral-template.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
"description": "MariaDB database service, without persistent storage. For more information about using this template, including OpenShift considerations, see https://github.com/sclorg/mariadb-container/blob/master/10.1/README.md.\n\nWARNING: Any data stored will be lost upon pod destruction. Only use this template for testing",
99
"iconClass": "icon-mariadb",
1010
"tags": "database,mariadb",
11-
"template.openshift.io/long-description": "This template provides a standalone MariaDB server with a database created. The database is not stored on persistent storage, so any restart of the service will result in all data being lost. The database name, username, and password are chosen via parameters when provisioning this service.",
12-
"template.openshift.io/provider-display-name": "Red Hat, Inc.",
13-
"template.openshift.io/documentation-url": "https://github.com/sclorg/mariadb-container/blob/master/10.1/README.md",
14-
"template.openshift.io/support-url": "https://access.redhat.com"
11+
"openshift.io/long-description": "This template provides a standalone MariaDB server with a database created. The database is not stored on persistent storage, so any restart of the service will result in all data being lost. The database name, username, and password are chosen via parameters when provisioning this service.",
12+
"openshift.io/provider-display-name": "Red Hat, Inc.",
13+
"openshift.io/documentation-url": "https://github.com/sclorg/mariadb-container/blob/master/10.1/README.md",
14+
"openshift.io/support-url": "https://access.redhat.com"
1515
}
1616
},
1717
"message": "The following service(s) have been created in your project: ${DATABASE_SERVICE_NAME}.\n\n Username: ${MYSQL_USER}\n Password: ${MYSQL_PASSWORD}\n Database Name: ${MYSQL_DATABASE}\n Connection URL: mysql://${DATABASE_SERVICE_NAME}:3306/\n\nFor more information about using this template, including OpenShift considerations, see https://github.com/sclorg/mariadb-container/blob/master/10.1/README.md.",

examples/db-templates/mariadb-persistent-template.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
"description": "MariaDB database service, with persistent storage. For more information about using this template, including OpenShift considerations, see https://github.com/sclorg/mariadb-container/blob/master/10.1/README.md.\n\nNOTE: Scaling to more than one replica is not supported. You must have persistent volumes available in your cluster to use this template.",
99
"iconClass": "icon-mariadb",
1010
"tags": "database,mariadb",
11-
"template.openshift.io/long-description": "This template provides a standalone MariaDB server with a database created. The database is stored on persistent storage. The database name, username, and password are chosen via parameters when provisioning this service.",
12-
"template.openshift.io/provider-display-name": "Red Hat, Inc.",
13-
"template.openshift.io/documentation-url": "https://github.com/sclorg/mariadb-container/blob/master/10.1/README.md",
14-
"template.openshift.io/support-url": "https://access.redhat.com"
11+
"openshift.io/long-description": "This template provides a standalone MariaDB server with a database created. The database is stored on persistent storage. The database name, username, and password are chosen via parameters when provisioning this service.",
12+
"openshift.io/provider-display-name": "Red Hat, Inc.",
13+
"openshift.io/documentation-url": "https://github.com/sclorg/mariadb-container/blob/master/10.1/README.md",
14+
"openshift.io/support-url": "https://access.redhat.com"
1515
}
1616
},
1717
"message": "The following service(s) have been created in your project: ${DATABASE_SERVICE_NAME}.\n\n Username: ${MYSQL_USER}\n Password: ${MYSQL_PASSWORD}\n Database Name: ${MYSQL_DATABASE}\n Connection URL: mysql://${DATABASE_SERVICE_NAME}:3306/\n\nFor more information about using this template, including OpenShift considerations, see https://github.com/sclorg/mariadb-container/blob/master/10.1/README.md.",

examples/db-templates/mongodb-ephemeral-template.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
"description": "MongoDB database service, without persistent storage. For more information about using this template, including OpenShift considerations, see https://github.com/sclorg/mongodb-container/blob/master/3.2/README.md.\n\nWARNING: Any data stored will be lost upon pod destruction. Only use this template for testing",
99
"iconClass": "icon-mongodb",
1010
"tags": "database,mongodb",
11-
"template.openshift.io/long-description": "This template provides a standalone MongoDB server with a database created. The database is not stored on persistent storage, so any restart of the service will result in all data being lost. The database name, username, and password are chosen via parameters when provisioning this service.",
12-
"template.openshift.io/provider-display-name": "Red Hat, Inc.",
13-
"template.openshift.io/documentation-url": "https://docs.openshift.org/latest/using_images/db_images/mongodb.html",
14-
"template.openshift.io/support-url": "https://access.redhat.com"
11+
"openshift.io/long-description": "This template provides a standalone MongoDB server with a database created. The database is not stored on persistent storage, so any restart of the service will result in all data being lost. The database name, username, and password are chosen via parameters when provisioning this service.",
12+
"openshift.io/provider-display-name": "Red Hat, Inc.",
13+
"openshift.io/documentation-url": "https://docs.openshift.org/latest/using_images/db_images/mongodb.html",
14+
"openshift.io/support-url": "https://access.redhat.com"
1515
}
1616
},
1717
"message": "The following service(s) have been created in your project: ${DATABASE_SERVICE_NAME}.\n\n Username: ${MONGODB_USER}\n Password: ${MONGODB_PASSWORD}\n Database Name: ${MONGODB_DATABASE}\n Connection URL: mongodb://${MONGODB_USER}:${MONGODB_PASSWORD}@${DATABASE_SERVICE_NAME}/${MONGODB_DATABASE}\n\nFor more information about using this template, including OpenShift considerations, see https://github.com/sclorg/mongodb-container/blob/master/3.2/README.md.",

examples/db-templates/mongodb-persistent-template.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
"description": "MongoDB database service, with persistent storage. For more information about using this template, including OpenShift considerations, see https://github.com/sclorg/mongodb-container/blob/master/3.2/README.md.\n\nNOTE: Scaling to more than one replica is not supported. You must have persistent volumes available in your cluster to use this template.",
99
"iconClass": "icon-mongodb",
1010
"tags": "database,mongodb",
11-
"template.openshift.io/long-description": "This template provides a standalone MongoDB server with a database created. The database is stored on persistent storage. The database name, username, and password are chosen via parameters when provisioning this service.",
12-
"template.openshift.io/provider-display-name": "Red Hat, Inc.",
13-
"template.openshift.io/documentation-url": "https://docs.openshift.org/latest/using_images/db_images/mongodb.html",
14-
"template.openshift.io/support-url": "https://access.redhat.com"
11+
"openshift.io/long-description": "This template provides a standalone MongoDB server with a database created. The database is stored on persistent storage. The database name, username, and password are chosen via parameters when provisioning this service.",
12+
"openshift.io/provider-display-name": "Red Hat, Inc.",
13+
"openshift.io/documentation-url": "https://docs.openshift.org/latest/using_images/db_images/mongodb.html",
14+
"openshift.io/support-url": "https://access.redhat.com"
1515
}
1616
},
1717
"message": "The following service(s) have been created in your project: ${DATABASE_SERVICE_NAME}.\n\n Username: ${MONGODB_USER}\n Password: ${MONGODB_PASSWORD}\n Database Name: ${MONGODB_DATABASE}\n Connection URL: mongodb://${MONGODB_USER}:${MONGODB_PASSWORD}@${DATABASE_SERVICE_NAME}/${MONGODB_DATABASE}\n\nFor more information about using this template, including OpenShift considerations, see https://github.com/sclorg/mongodb-container/blob/master/3.2/README.md.",

examples/db-templates/mysql-ephemeral-template.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
"description": "MySQL database service, without persistent storage. For more information about using this template, including OpenShift considerations, see https://github.com/sclorg/mysql-container/blob/master/5.7/README.md.\n\nWARNING: Any data stored will be lost upon pod destruction. Only use this template for testing",
99
"iconClass": "icon-mysql-database",
1010
"tags": "database,mysql",
11-
"template.openshift.io/long-description": "This template provides a standalone MySQL server with a database created. The database is not stored on persistent storage, so any restart of the service will result in all data being lost. The database name, username, and password are chosen via parameters when provisioning this service.",
12-
"template.openshift.io/provider-display-name": "Red Hat, Inc.",
13-
"template.openshift.io/documentation-url": "https://docs.openshift.org/latest/using_images/db_images/mysql.html",
14-
"template.openshift.io/support-url": "https://access.redhat.com"
11+
"openshift.io/long-description": "This template provides a standalone MySQL server with a database created. The database is not stored on persistent storage, so any restart of the service will result in all data being lost. The database name, username, and password are chosen via parameters when provisioning this service.",
12+
"openshift.io/provider-display-name": "Red Hat, Inc.",
13+
"openshift.io/documentation-url": "https://docs.openshift.org/latest/using_images/db_images/mysql.html",
14+
"openshift.io/support-url": "https://access.redhat.com"
1515
}
1616
},
1717
"message": "The following service(s) have been created in your project: ${DATABASE_SERVICE_NAME}.\n\n Username: ${MYSQL_USER}\n Password: ${MYSQL_PASSWORD}\n Database Name: ${MYSQL_DATABASE}\n Connection URL: mysql://${DATABASE_SERVICE_NAME}:3306/\n\nFor more information about using this template, including OpenShift considerations, see https://github.com/sclorg/mysql-container/blob/master/5.7/README.md.",

examples/db-templates/mysql-persistent-template.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
"description": "MySQL database service, with persistent storage. For more information about using this template, including OpenShift considerations, see https://github.com/sclorg/mysql-container/blob/master/5.7/README.md.\n\nNOTE: Scaling to more than one replica is not supported. You must have persistent volumes available in your cluster to use this template.",
99
"iconClass": "icon-mysql-database",
1010
"tags": "database,mysql",
11-
"template.openshift.io/long-description": "This template provides a standalone MySQL server with a database created. The database is stored on persistent storage. The database name, username, and password are chosen via parameters when provisioning this service.",
12-
"template.openshift.io/provider-display-name": "Red Hat, Inc.",
13-
"template.openshift.io/documentation-url": "https://docs.openshift.org/latest/using_images/db_images/mysql.html",
14-
"template.openshift.io/support-url": "https://access.redhat.com"
11+
"openshift.io/long-description": "This template provides a standalone MySQL server with a database created. The database is stored on persistent storage. The database name, username, and password are chosen via parameters when provisioning this service.",
12+
"openshift.io/provider-display-name": "Red Hat, Inc.",
13+
"openshift.io/documentation-url": "https://docs.openshift.org/latest/using_images/db_images/mysql.html",
14+
"openshift.io/support-url": "https://access.redhat.com"
1515
}
1616
},
1717
"message": "The following service(s) have been created in your project: ${DATABASE_SERVICE_NAME}.\n\n Username: ${MYSQL_USER}\n Password: ${MYSQL_PASSWORD}\n Database Name: ${MYSQL_DATABASE}\n Connection URL: mysql://${DATABASE_SERVICE_NAME}:3306/\n\nFor more information about using this template, including OpenShift considerations, see https://github.com/sclorg/mysql-container/blob/master/5.7/README.md.",

examples/db-templates/postgresql-ephemeral-template.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
"description": "PostgreSQL database service, without persistent storage. For more information about using this template, including OpenShift considerations, see https://github.com/sclorg/postgresql-container/blob/master/9.5.\n\nWARNING: Any data stored will be lost upon pod destruction. Only use this template for testing",
99
"iconClass": "icon-postgresql",
1010
"tags": "database,postgresql",
11-
"template.openshift.io/long-description": "This template provides a standalone PostgreSQL server with a database created. The database is not stored on persistent storage, so any restart of the service will result in all data being lost. The database name, username, and password are chosen via parameters when provisioning this service.",
12-
"template.openshift.io/provider-display-name": "Red Hat, Inc.",
13-
"template.openshift.io/documentation-url": "https://docs.openshift.org/latest/using_images/db_images/postgresql.html",
14-
"template.openshift.io/support-url": "https://access.redhat.com"
11+
"openshift.io/long-description": "This template provides a standalone PostgreSQL server with a database created. The database is not stored on persistent storage, so any restart of the service will result in all data being lost. The database name, username, and password are chosen via parameters when provisioning this service.",
12+
"openshift.io/provider-display-name": "Red Hat, Inc.",
13+
"openshift.io/documentation-url": "https://docs.openshift.org/latest/using_images/db_images/postgresql.html",
14+
"openshift.io/support-url": "https://access.redhat.com"
1515
}
1616
},
1717
"message": "The following service(s) have been created in your project: ${DATABASE_SERVICE_NAME}.\n\n Username: ${POSTGRESQL_USER}\n Password: ${POSTGRESQL_PASSWORD}\n Database Name: ${POSTGRESQL_DATABASE}\n Connection URL: postgresql://${DATABASE_SERVICE_NAME}:5432/\n\nFor more information about using this template, including OpenShift considerations, see https://github.com/sclorg/postgresql-container/blob/master/9.5.",

examples/db-templates/postgresql-persistent-template.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
"description": "PostgreSQL database service, with persistent storage. For more information about using this template, including OpenShift considerations, see https://github.com/sclorg/postgresql-container/blob/master/9.5.\n\nNOTE: Scaling to more than one replica is not supported. You must have persistent volumes available in your cluster to use this template.",
99
"iconClass": "icon-postgresql",
1010
"tags": "database,postgresql",
11-
"template.openshift.io/long-description": "This template provides a standalone PostgreSQL server with a database created. The database is stored on persistent storage. The database name, username, and password are chosen via parameters when provisioning this service.",
12-
"template.openshift.io/provider-display-name": "Red Hat, Inc.",
13-
"template.openshift.io/documentation-url": "https://docs.openshift.org/latest/using_images/db_images/postgresql.html",
14-
"template.openshift.io/support-url": "https://access.redhat.com"
11+
"openshift.io/long-description": "This template provides a standalone PostgreSQL server with a database created. The database is stored on persistent storage. The database name, username, and password are chosen via parameters when provisioning this service.",
12+
"openshift.io/provider-display-name": "Red Hat, Inc.",
13+
"openshift.io/documentation-url": "https://docs.openshift.org/latest/using_images/db_images/postgresql.html",
14+
"openshift.io/support-url": "https://access.redhat.com"
1515
}
1616
},
1717
"message": "The following service(s) have been created in your project: ${DATABASE_SERVICE_NAME}.\n\n Username: ${POSTGRESQL_USER}\n Password: ${POSTGRESQL_PASSWORD}\n Database Name: ${POSTGRESQL_DATABASE}\n Connection URL: postgresql://${DATABASE_SERVICE_NAME}:5432/\n\nFor more information about using this template, including OpenShift considerations, see https://github.com/sclorg/postgresql-container/blob/master/9.5.",

examples/db-templates/redis-ephemeral-template.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
"description": "Redis in-memory data structure store, without persistent storage. For more information about using this template, including OpenShift considerations, see https://github.com/sclorg/redis-container/blob/master/3.2.\n\nWARNING: Any data stored will be lost upon pod destruction. Only use this template for testing",
99
"iconClass": "icon-redis",
1010
"tags": "database,redis",
11-
"template.openshift.io/long-description": "This template provides a standalone Redis server. The data is not stored on persistent storage, so any restart of the service will result in all data being lost.",
12-
"template.openshift.io/provider-display-name": "Red Hat, Inc.",
13-
"template.openshift.io/documentation-url": "https://github.com/sclorg/redis-container/tree/master/3.2",
14-
"template.openshift.io/support-url": "https://access.redhat.com"
11+
"openshift.io/long-description": "This template provides a standalone Redis server. The data is not stored on persistent storage, so any restart of the service will result in all data being lost.",
12+
"openshift.io/provider-display-name": "Red Hat, Inc.",
13+
"openshift.io/documentation-url": "https://github.com/sclorg/redis-container/tree/master/3.2",
14+
"openshift.io/support-url": "https://access.redhat.com"
1515
}
1616
},
1717
"message": "The following service(s) have been created in your project: ${DATABASE_SERVICE_NAME}.\n\n Password: ${REDIS_PASSWORD}\n Connection URL: redis://${DATABASE_SERVICE_NAME}:6379/\n\nFor more information about using this template, including OpenShift considerations, see https://github.com/sclorg/redis-container/blob/master/3.2.",

examples/db-templates/redis-persistent-template.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
"description": "Redis in-memory data structure store, with persistent storage. For more information about using this template, including OpenShift considerations, see https://github.com/sclorg/redis-container/blob/master/3.2.\n\nNOTE: You must have persistent volumes available in your cluster to use this template.",
99
"iconClass": "icon-redis",
1010
"tags": "database,redis",
11-
"template.openshift.io/long-description": "This template provides a standalone Redis server. The data is stored on persistent storage.",
12-
"template.openshift.io/provider-display-name": "Red Hat, Inc.",
13-
"template.openshift.io/documentation-url": "https://github.com/sclorg/redis-container/tree/master/3.2",
14-
"template.openshift.io/support-url": "https://access.redhat.com"
11+
"openshift.io/long-description": "This template provides a standalone Redis server. The data is stored on persistent storage.",
12+
"openshift.io/provider-display-name": "Red Hat, Inc.",
13+
"openshift.io/documentation-url": "https://github.com/sclorg/redis-container/tree/master/3.2",
14+
"openshift.io/support-url": "https://access.redhat.com"
1515
}
1616
},
1717
"message": "The following service(s) have been created in your project: ${DATABASE_SERVICE_NAME}.\n\n Password: ${REDIS_PASSWORD}\n Connection URL: redis://${DATABASE_SERVICE_NAME}:6379/\n\nFor more information about using this template, including OpenShift considerations, see https://github.com/sclorg/redis-container/blob/master/3.2.",

0 commit comments

Comments
 (0)