Skip to content

Commit 68834c1

Browse files
committed
remove the tag 190111
1 parent cb81d04 commit 68834c1

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

integration-tests/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ K8sTestUtils - uses k8s java client api, this is used only for delete domain use
180180

181181
* Maven and latest Git should be in PATH
182182
* export JAVA_HOME
183-
* export WEBLOGIC_IMAGE_NAME and WEBLOGIC_IMAGE_TAG if different from middleware/weblogic and 12.2.1.3-190111
183+
* export WEBLOGIC_IMAGE_NAME and WEBLOGIC_IMAGE_TAG if different from middleware/weblogic and 12.2.1.3
184184
* Setup docker access to WebLogic 12c Images
185185

186186
Method 1
@@ -194,7 +194,7 @@ K8sTestUtils - uses k8s java client api, this is used only for delete domain use
194194
```
195195

196196
Method 2
197-
- Make sure the weblogic image i.e. middleware/weblogic:12.2.1.3-190111 already exists locally in a docker repository the k8s cluster can access
197+
- Make sure the weblogic image i.e. middleware/weblogic:12.2.1.3 already exists locally in a docker repository the k8s cluster can access
198198
- Make sure the weblogic image has patch p29135930 (required for the WebLogic Kubernetes Operator).
199199
- If not, see [https://github.com/oracle/docker-images/tree/master/OracleWebLogic/samples/12213-patch-wls-for-k8s].
200200

integration-tests/USECASES.MD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Basic Use Cases described above are verified in all the domain configurations. A
6868
| Server Pods Restarted by modifying properties on the domain resource| Use Case |
6969
| --- | --- |
7070
| Server pods restarted by changing Env property | Verify admin and managed server pods being restarted by property change: `-Dweblogic.StdoutDebugEnabled=false` --> `-Dweblogic.StdoutDebugEnabled=true` |
71-
| Server pods restarted by changing image | Verify admin and managed server pods being restarted by property change: image: `container-registry.oracle.com/middleware/weblogic:12.2.1.3-190111` --> image: `container-registry.oracle.com/middleware/weblogic:duplicate` |
71+
| Server pods restarted by changing image | Verify admin and managed server pods being restarted by property change: image: `container-registry.oracle.com/middleware/weblogic:12.2.1.3` --> image: `container-registry.oracle.com/middleware/weblogic:duplicate` |
7272
| Server pods restarted by changing imagePullPolicy | Verify admin and managed server pods being restarted by property change: imagePullPolicy: IfNotPresent --> imagePullPolicy: Never |
7373
| Server pods restarted by changing includeServerOutInPodLog | Verify admin and managed server pods being restarted by property change: includeServerOutInPodLog: true --> includeServerOutInPodLog: false |
7474
| Server pods restarted by changing logHomeEnable | Verify admin and managed server pods being restarted by property change: logHomeEnabled: true --> logHomeEnabled: false |

integration-tests/src/test/java/oracle/kubernetes/operator/ITPodsRestart.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ public void testServerPodsRestartByChangingIncludeServerOutInPodLog() throws Exc
184184
/**
185185
* Modify the domain scope property on the domain resource using kubectl apply -f domain.yaml
186186
* Verify that all the server pods in the domain got re-started .The property tested is: image:
187-
* "container-registry.oracle.com/middleware/weblogic:12.2.1.3-190111" --> image:
187+
* "container-registry.oracle.com/middleware/weblogic:12.2.1.3" --> image:
188188
* "container-registry.oracle.com/middleware/weblogic:duplicate"
189189
*
190190
* @throws Exception

integration-tests/src/test/resources/OperatorIT.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ username=weblogic
77
password=welcome1
88
maxIterationsPod=25
99
waitTimePod=10
10-
weblogicImageTag = 12.2.1.3-190111
10+
weblogicImageTag = 12.2.1.3
1111
weblogicImageName = container-registry.oracle.com/middleware/weblogic
1212
OCR_SERVER="container-registry.oracle.com"

integration-tests/src/test/resources/domaininimagewdt.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ exposeAdminT3Channel: true
99
exposeAdminNodePort: true
1010
voyagerWebPort: 30333
1111
domainHomeImageBuildPath: ./docker-images/OracleWebLogic/samples/12213-domain-home-in-image-wdt
12-
domainHomeImageBase: "container-registry.oracle.com/middleware/weblogic:12.2.1.3-190111"
12+
domainHomeImageBase: "container-registry.oracle.com/middleware/weblogic:12.2.1.3"
1313
logHomeOnPV: true
14-
clusterType: CONFIGURED
14+
clusterType: CONFIGURED

integration-tests/src/test/resources/domaininimagewlst.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ exposeAdminT3Channel: true
99
exposeAdminNodePort: true
1010
voyagerWebPort: 30322
1111
domainHomeImageBuildPath: ./docker-images/OracleWebLogic/samples/12213-domain-home-in-image
12-
domainHomeImageBase: "container-registry.oracle.com/middleware/weblogic:12.2.1.3-190111"
13-
logHomeOnPV: true
12+
domainHomeImageBase: "container-registry.oracle.com/middleware/weblogic:12.2.1.3"
13+
logHomeOnPV: true

integration-tests/src/test/resources/setupenv.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ export RESULT_ROOT=${RESULT_ROOT:-/scratch/$USER/wl_k8s_test_results}
183183
export PV_ROOT=${PV_ROOT:-$RESULT_ROOT}
184184
echo "RESULT_ROOT$RESULT_ROOT PV_ROOT$PV_ROOT"
185185
export BRANCH_NAME="${BRANCH_NAME:-$SHARED_CLUSTER_GIT_BRANCH}"
186-
export IMAGE_TAG_WEBLOGIC="${IMAGE_TAG_WEBLOGIC:-12.2.1.3-190111}"
186+
export IMAGE_TAG_WEBLOGIC="${IMAGE_TAG_WEBLOGIC:-12.2.1.3}"
187187

188188
if [ "$JRF_ENABLED" = true ] ; then
189189
export FMWINFRA_IMAGE_URI=/middleware/fmw-infrastructure

0 commit comments

Comments
 (0)