@@ -12,8 +12,8 @@ source "${THISDIR}/test-lib.sh"
1212source " ${THISDIR} /test-lib-openshift.sh"
1313
1414function ct_pull_or_import_postgresql() {
15- postgresql_image=" quay.io/sclorg/postgresql-12-c8s "
16- image_short=" postgresql:12 "
15+ postgresql_image=" quay.io/sclorg/postgresql-16-c10s "
16+ image_short=" postgresql:16 "
1717 image_tag=" ${image_short} "
1818 # Variable CVP is set by CVP pipeline
1919 if [ " ${CVP:- 0} " -eq " 0" ]; then
@@ -22,19 +22,18 @@ function ct_pull_or_import_postgresql() {
2222 # Exit in case of failure, because postgresql container is mandatory
2323 ct_pull_image " ${postgresql_image} " " true"
2424 else
25- # Import postgresql-10-centos7 image before running tests on CVP
25+ # Import postgresql-16-c10s image before running tests on CVP
2626 oc import-image " ${image_short} :latest" --from=" ${postgresql_image} :latest" --insecure=true --confirm
27- # Tag postgresql image to "postgresql:10 " which is expected by test suite
27+ # Tag postgresql image to "postgresql:16 " which is expected by test suite
2828 oc tag " ${image_short} :latest" " ${image_tag} "
2929 fi
3030}
3131
3232function rails_ex_branch() {
3333 # Ruby 3.3 introduced too many incompatibilities to be able
34- # to use the same Gemfile for RHEL 7 and also newer RHELs.
35- # we can use the same Gemfile for RHEL 7 and newer
36- # as long as Ruby MAJOR.MINOR <= 3.1. Newer Ruby needs dependencies
37- # that are not compatible with RHEL 7.
34+ # to use the same Gemfile as for the previous versions.
35+ # We can use the same Gemfile for RHEL 8, 9, and 10
36+ # as long as Ruby MAJOR.MINOR <= 3.1.
3837
3938 # Latest stable
4039 rails_example_repo_branch=" 3.3"
0 commit comments