Skip to content

Commit b8f7aa4

Browse files
committed
Expect RHEL9 and cXs images being tested for migration
1 parent e3eb6d3 commit b8f7aa4

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

test/pg-test-lib.sh

+12
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,18 @@ get_image_id ()
3939
ns=rhel8
4040
local image=registry.redhat.io/$ns/postgresql-${version}
4141
;;
42+
rhel9)
43+
ns=rhel9
44+
local image=registry.redhat.io/$ns/postgresql-${version}
45+
;;
46+
c8s)
47+
ns=c8s
48+
local image=quay.io/sclorg/postgresql-${version}-$ns
49+
;;
50+
c9s)
51+
ns=c9s
52+
local image=quay.io/sclorg/postgresql-${version}-$ns
53+
;;
4254
esac
4355
docker pull "$image" >/dev/null
4456
echo "$image"

0 commit comments

Comments
 (0)