Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
65a633f
builds: update nodejs in pullsecret test
yselkowitz May 14, 2021
ea240b3
Drop RHEL imagestreams from update-external-examples.sh
yselkowitz Apr 7, 2021
4ea9e6c
Drop mongodb from external examples
yselkowitz Apr 7, 2021
ba61136
Update external examples
yselkowitz Apr 7, 2021
b364dbd
cluster: sync quickstarts
yselkowitz Apr 7, 2021
99788e3
cluster: switch from nodejs-mongodb to nodejs-postgresql
yselkowitz Apr 7, 2021
6616e7c
deployments: switch deployment-example from mongodb to postgresql
yselkowitz Apr 8, 2021
9b8eeaf
builds: move multi-namespace-template from mongodb to mariadb
yselkowitz Apr 8, 2021
78afa4f
jenkins: move pipeline tests from mongodb to mariadb
yselkowitz Apr 8, 2021
b08b0e9
image_ecosystem: do not wait for mongodb imagestream
yselkowitz Apr 8, 2021
09df54d
builds: use UBI8 ImageStreamTags
yselkowitz May 14, 2021
018ac5e
builds: use ubi8/ruby-27 instead of centos/ruby-27-centos7
yselkowitz May 14, 2021
7e93e51
builds: comment out multi-namespace template test
yselkowitz Jun 16, 2021
89cd83a
cli: use ubi8/ruby-27 instead of centos/ruby-27-centos7
yselkowitz May 14, 2021
1a7b740
cmd: use UBI8 ImageStreamTags
yselkowitz May 14, 2021
6fdfb0a
cmd: use ubi8/ruby-27 instead of centos/ruby-27-centos7
yselkowitz May 14, 2021
651f48a
imageapis: use UBI8 ImageStreamTags
yselkowitz May 14, 2021
cc6a18e
image_ecosystem: use UBI8 ImageStreamTags
yselkowitz Apr 7, 2021
8a0193e
jenkins: use UBI8 ImageStreamTags
yselkowitz May 14, 2021
d4cdd4f
Update bindata
yselkowitz May 14, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmd/openshift-tests/images.go
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ func pulledInvalidImages(fromRepository string) ginkgo.JUnitForEventsFunc {
// used to test pull secrets against an authenticated registry
// TODO: will not work for a disconnected test environment and should be emulated by launching
// an authenticated registry in a pod on cluster
"registry.redhat.io/rhscl/nodejs-10-rhel7:latest",
"registry.redhat.io/ubi8/nodejs-14:latest",
)
if len(fromRepository) > 0 {
allowedPrefixes.Insert(fromRepository)
Expand Down
10 changes: 4 additions & 6 deletions examples/db-templates/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@ your current project. Instantiate a new database service with this command:
Replace `/path/to/template.json` with an appropriate path, that can be either a
local path or an URL. Example:

$ oc new-app https://raw.githubusercontent.com/openshift/origin/master/examples/db-templates/mongodb-ephemeral-template.json
$ oc new-app https://raw.githubusercontent.com/openshift/origin/master/examples/db-templates/mariadb-ephemeral-template.json

The parameters listed in the output above can be tweaked by specifying values in
the command line with the `-p` option:

$ oc new-app examples/db-templates/mongodb-ephemeral-template.json -p DATABASE_SERVICE_NAME=mydb -p MONGODB_USER=default
$ oc new-app examples/db-templates/mariadb-ephemeral-template.json -p DATABASE_SERVICE_NAME=mydb -p MYSQL_USER=default

Note that the persistent template requires an existing persistent volume,
otherwise the deployment won't ever succeed.
Expand All @@ -59,8 +59,8 @@ later. Create the template with this command:
Replace `/path/to/template.json` with an appropriate path, that can be either a
local path or an URL. Example:

$ oc create -f https://raw.githubusercontent.com/openshift/origin/master/examples/db-templates/mongodb-ephemeral-template.json
template "mongodb-ephemeral" created
$ oc create -f https://raw.githubusercontent.com/openshift/origin/master/examples/db-templates/mariadb-ephemeral-template.json
template "mariadb-ephemeral" created

The new template is now available to use in the Web Console or with `oc
new-app`.
Expand All @@ -70,8 +70,6 @@ new-app`.

* [MariaDB](https://raw.githubusercontent.com/openshift/library/master/arch/x86_64/official/mariadb/templates/mariadb-ephemeral.json) - For more information see the [product documentation](https://docs.openshift.org/latest/using_images/db_images/mariadb.html).
* [MariaDB Persistent](https://raw.githubusercontent.com/openshift/library/master/arch/x86_64/official/mariadb/templates/mariadb-persistent.json) - For more information see the [product documentation](https://docs.openshift.org/latest/using_images/db_images/mariadb.html).
* [MongoDB](https://raw.githubusercontent.com/openshift/library/master/arch/x86_64/official/mongodb/templates/mongodb-ephemeral.json) - For more information see the [product documentation](https://docs.openshift.org/latest/using_images/db_images/mongodb.html).
* [MongoDB Persistent](https://raw.githubusercontent.com/openshift/library/master/arch/x86_64/official/mongodb/templates/mongodb-persistent.json) - For more information see the [product documentation](https://docs.openshift.org/latest/using_images/db_images/mongodb.html).
* [MySQL](https://raw.githubusercontent.com/openshift/library/master/arch/x86_64/official/mysql/templates/mysql-ephemeral.json) - For more information see the [product documentation](https://docs.openshift.org/latest/using_images/db_images/mysql.html).
* [MySQL Persistent](https://raw.githubusercontent.com/openshift/library/master/arch/x86_64/official/mysql/templates/mysql-persistent.json) - For more information see the [product documentation](https://docs.openshift.org/latest/using_images/db_images/mysql.html).
* [PostgreSQL](https://raw.githubusercontent.com/openshift/library/master/arch/x86_64/official/postgresql/templates/postgresql-ephemeral.json) - For more information see the [product documentation](https://docs.openshift.org/latest/using_images/db_images/postgresql.html).
Expand Down
Loading