You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: integration-tests/README.md
+4-11Lines changed: 4 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -300,16 +300,9 @@ JUnit test results can be seen at "integration-tests/target/failsafe-reports/TES
300
300
* Setup docker access to FMW Infrastructure 12c Image and Oracle Database 12c Image
301
301
302
302
Method 1
303
-
- Setup a personal account on hub.docker.com
304
-
- Then sign in to hub.docker.com and signup for access to Oracle Database 12c Images via https://hub.docker.com/_/oracle-database-enterprise-edition
305
-
- Then export the following before running the tests:
306
-
```
307
-
export DOCKER_USERNAME=<docker_username>
308
-
export DOCKER_PASSWORD=<docker_password>
309
-
export DOCKER_EMAIL=<docker_email>
310
-
```
311
-
- Setup an account in phx.ocir.io
312
-
- Then sign in to phx.ocir.io to get access to FMW Infrastructure 12c Image: **_phx.ocir.io/weblogick8s/oracle/fmw-infrastructure:12.2.1.3_**
303
+
- Setup a personal account on container-registry.oracle.com
304
+
- Then sign in to container-registry.oracle.com and accept license for access to Oracle Database 12c Images: **_container-registry.oracle.com/database/enterprise:12.2.0.1-slim_**
305
+
- And get access to FMW Infrastructure 12c Image: **_container-registry.oracle.com/middleware/fmw-infrastructure:12.2.1.3_**
313
306
- export the following before running the tests:
314
307
```
315
308
export REPO_USERNAME=<ocir_username>
@@ -318,7 +311,7 @@ JUnit test results can be seen at "integration-tests/target/failsafe-reports/TES
318
311
```
319
312
320
313
Method 2
321
-
- Make sure the FMW Infrastructure image i.e. **_phx.ocir.io/weblogick8s/oracle/fmw-infrastructure:12.2.1.3_** and the Oracle database image i.e. **_store/oracle/database-enterprise:12.2.0.1_** already exist locally in a docker repository the k8s cluster can access
314
+
- Make sure the FMW Infrastructure image i.e. **_container-registry.oracle.com/middleware/fmw-infrastructure:12.2.1.3_** and the Oracle database image i.e. **_container-registry.oracle.com/database/enterprise:12.2.0.1-slim_** already exist locally in a docker repository the k8s cluster can access
if [ -z"$OCR_USERNAME" ] || [ -z"$OCR_PASSWORD" ];then
144
144
if [ -z$(docker images -q $IMAGE_NAME_WEBLOGIC:$IMAGE_TAG_WEBLOGIC) ];then
145
-
echo"Image $IMAGE_NAME_WEBLOGIC:$IMAGE_TAG_WEBLOGIC doesn't exist. Provide Docker login details using env variables REPO_USERNAME, REPO_PASSWORD and REPO_EMAIL to pull the image."
145
+
echo"Image $IMAGE_NAME_FMWINFRA:$IMAGE_TAG_FMWINFRA doesn't exist. Provide Docker login details using env variables OCR_USERNAME and OCR_PASSWORD to pull the image."
146
146
exit 1
147
147
fi
148
+
if [ -z$(docker images -q $IMAGE_NAME_ORACLEDB:$IMAGE_TAG_ORACLEDB) ];then
149
+
echo"Image $IMAGE_NAME_ORACLEDB:$IMAGE_TAG_ORACLEDB doesn't exist. Provide Docker login details using env variables OCR_USERNAME and OCR_PASSWORD to pull the image."
150
+
exit 1
151
+
fi
148
152
fi
149
153
150
-
# Create secret to pull fmw infra image if required env variables are provided
if [ -z$(docker images -q $IMAGE_NAME_ORACLEDB:$IMAGE_TAG_ORACLEDB) ];then
172
-
echo"Image $IMAGE_NAME_ORACLEDB:$IMAGE_TAG_ORACLEDB doesn't exist. Provide Docker login details using env variables DOCKER_USERNAME, DOCKER_PASSWORD and DOCKER_EMAIL to pull the image."
173
-
exit 1
174
-
fi
175
-
fi
176
-
177
-
# Create secret to pull OracleDB image if required env variables are provided
0 commit comments