File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed
integration-tests/src/test
java/oracle/kubernetes/operator Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ public class BaseTest {
31
31
public static final String TESTWEBAPP = "testwebapp" ;
32
32
public static final String TESTWSAPP = "testwsapp" ;
33
33
public static final String TESTWSSERVICE = "TestWsApp" ;
34
+ public static final String PS4_SLIM_TAG = "12.2.1.4-slim" ;
34
35
35
36
// property file used to customize operator properties for operator inputs yaml
36
37
Original file line number Diff line number Diff line change @@ -468,7 +468,9 @@ public void testAutoAndCustomSitConfigOverrides() throws Exception {
468
468
domain11 = TestUtils .createDomain (domainMap );
469
469
domain11 .verifyDomainCreated ();
470
470
testBasicUseCases (domain11 );
471
- testAdminT3ChannelWithJms (domain11 );
471
+ if (!getWeblogicImageTag ().equalsIgnoreCase (PS4_SLIM_TAG )) {
472
+ testAdminT3ChannelWithJms (domain11 );
473
+ }
472
474
testCompletedSuccessfully = true ;
473
475
474
476
} finally {
Original file line number Diff line number Diff line change 315
315
docker build --build-arg http_proxy=$http_proxy --build-arg https_proxy=$https_proxy --build-arg no_proxy=$no_proxy -t " ${IMAGE_NAME_OPERATOR} :${IMAGE_TAG_OPERATOR} " --build-arg VERSION=$JAR_VERSION --no-cache=true .
316
316
docker tag " ${IMAGE_NAME_OPERATOR} :${IMAGE_TAG_OPERATOR} " weblogic-kubernetes-operator:latest
317
317
318
- if [ " $JRF_ENABLED " = false ]; then
318
+ if [ " $JRF_ENABLED " = false ] && [ " $IMAGE_TAG_WEBLOGIC " != " 12.2.1.4-slim " ] ; then
319
319
get_wlthint3client_from_image
320
320
fi
321
321
fi
You can’t perform that action at this time.
0 commit comments