-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #69 from sclorg/new_940_images
Add new RHEL-9.4. images
- Loading branch information
Showing
11 changed files
with
116 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
registry_redhat_io: "rhel8/mariadb-1011" | ||
tag_name: "mariadb:10.11-el8" | ||
deployment: "oc new-app mariadb:10.11-el8~https://github.com/sclorg/mariadb-container.git \ | ||
--name rhel8-mariadb-1011 \ | ||
--context-dir=examples/extend-image \ | ||
--env MYSQL_OPERATIONS_USER=opuser \ | ||
--env MYSQL_OPERATIONS_PASSWORD=oppass \ | ||
--env MYSQL_DATABASE=opdb \ | ||
--env MYSQL_USER=user \ | ||
--env MYSQL_PASSWORD=pass" | ||
pod_name: "rhel8-mariadb-1011" | ||
add_route: true | ||
test_exec_command: "./files/check_mariadb_container.sh" | ||
expected_exec_result: "FINE" | ||
scl_url: "mariadb-container" | ||
is_name: "mariadb" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
registry_redhat_io: "ubi8/nginx-124" | ||
tag_name: "nginx:1.24-ubi8" | ||
deployment: "oc process -f https://raw.githubusercontent.com/sclorg/nginx-ex/master/openshift/templates/nginx.json -p NGINX_VERSION=1.24-ubi8 -p NAMESPACE={{ oc_project_rhscl }} | oc apply -f -" | ||
pod_name: "nginx-example" | ||
check_curl_output: "Welcome to your static nginx application" | ||
scl_url: "nginx-container" | ||
is_name: "nginx" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
registry_redhat_io: "rhel8/postgresql-16" | ||
tag_name: "postgresql:16-el8" | ||
deployment: "oc new-app postgresql:16-el8~https://github.com/sclorg/postgresql-container.git \ | ||
--name rhel8-postgresql-16 \ | ||
--context-dir examples/extending-image/ \ | ||
-e POSTGRESQL_USER=user \ | ||
-e POSTGRESQL_DATABASE=db \ | ||
-e POSTGRESQL_PASSWORD=password" | ||
pod_name: "rhel8-postgresql-16" | ||
add_route: true | ||
test_exec_command: "./files/check_postgresql_container.sh" | ||
expected_exec_result: "FINE" | ||
scl_url: "postgresql-container" | ||
is_name: "postgresql" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
registry_redhat_io: "rhel8/python-312" | ||
tag_name: "python:3.12-el8" | ||
deployment: "oc new-app python:3.12-el9~https://github.com/sclorg/s2i-python-container.git --context-dir=3.12/test/setup-test-app/" | ||
pod_name: "s2i-python-container" | ||
add_route: true | ||
check_curl_output: "Hello from gunicorn WSGI application" | ||
scl_url: "s2i-python-container" | ||
is_name: "python" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
registry_redhat_io: "ubi8/ruby-33" | ||
tag_name: "ruby:3.3-ubi8" | ||
deployment: "oc new-app ruby:3.3-ubi8~https://github.com/sclorg/s2i-ruby-container.git --context-dir=3.3/test/puma-test-app/" | ||
pod_name: "s2i-ruby-container" | ||
add_route: true | ||
check_curl_output: "Hello world" | ||
scl_url: "s2i-ruby-container" | ||
is_name: "ruby" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
registry_redhat_io: "rhel9/mariadb-1011" | ||
tag_name: "mariadb:10.11-el9" | ||
deployment: "oc new-app mariadb:10.11-el9~https://github.com/sclorg/mariadb-container.git \ | ||
--name rhel9-mariadb-1011 \ | ||
--context-dir=examples/extend-image \ | ||
--env MYSQL_OPERATIONS_USER=opuser \ | ||
--env MYSQL_OPERATIONS_PASSWORD=oppass \ | ||
--env MYSQL_DATABASE=opdb \ | ||
--env MYSQL_USER=user \ | ||
--env MYSQL_PASSWORD=pass" | ||
pod_name: "rhel9-mariadb-1011" | ||
add_route: true | ||
test_exec_command: "./files/check_mariadb_container.sh" | ||
expected_exec_result: "FINE" | ||
scl_url: "mariadb-container" | ||
is_name: "mariadb" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
registry_redhat_io: "ubi9/nginx-124" | ||
tag_name: "nginx:1.24-ubi9" | ||
deployment: "oc process -f https://raw.githubusercontent.com/sclorg/nginx-ex/master/openshift/templates/nginx.json -p NGINX_VERSION=1.24-ubi9 -p NAMESPACE={{ oc_project_rhscl }} | oc apply -f -" | ||
pod_name: "nginx-example" | ||
check_curl_output: "Welcome to your static nginx application" | ||
scl_url: "nginx-container" | ||
is_name: "nginx" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
registry_redhat_io: "rhel9/postgresql-16" | ||
tag_name: "postgresql:16-el9" | ||
deployment: "oc new-app postgresql:16-el9~https://github.com/sclorg/postgresql-container.git \ | ||
--name rhel9-postgresql-16 \ | ||
--context-dir examples/extending-image/ \ | ||
-e POSTGRESQL_USER=user \ | ||
-e POSTGRESQL_DATABASE=db \ | ||
-e POSTGRESQL_PASSWORD=password" | ||
pod_name: "rhel9-postgresql-16" | ||
add_route: true | ||
test_exec_command: "./files/check_postgresql_container.sh" | ||
expected_exec_result: "FINE" | ||
scl_url: "postgresql-container" | ||
is_name: "postgresql" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
registry_redhat_io: "rhel9/python-312" | ||
tag_name: "python:3.12-el9" | ||
deployment: "oc new-app python:3.12-el9~https://github.com/sclorg/s2i-python-container.git --context-dir=3.12/test/setup-test-app/" | ||
pod_name: "s2i-python-container" | ||
add_route: true | ||
check_curl_output: "Hello from gunicorn WSGI application" | ||
scl_url: "s2i-python-container" | ||
is_name: "python" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
registry_redhat_io: "ubi9/ruby-33" | ||
tag_name: "ruby:3.3-ubi9" | ||
deployment: "oc new-app ruby:3.3-ubi9~https://github.com/sclorg/s2i-ruby-container.git --context-dir=3.3/test/puma-test-app/" | ||
pod_name: "s2i-ruby-container" | ||
add_route: true | ||
check_curl_output: "Hello world" | ||
scl_url: "s2i-ruby-container" | ||
is_name: "ruby" |