Skip to content

Commit aed127c

Browse files
authored
create crio-pipeline profile and use unique namespace in ItTwoDomainsManagedByTwoOperators (#3051)
* create crio-pipeline profile and use unique namespace in ItTwoDomainsManagedByTwoOperators
1 parent 588148d commit aed127c

22 files changed

+110
-130
lines changed

integration-tests/pom.xml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -583,12 +583,14 @@
583583
<id>wls-srg</id>
584584
<properties>
585585
<skipITs>false</skipITs>
586-
<includes-failsafe>
587-
**/ItKubernetesDomainEvents,
588-
**/ItMiiAuxiliaryImage,
589-
**/ItMultiDomainModels,
590-
**/ItPodsRestart
591-
</includes-failsafe>
586+
<groups>gate,samples-gate</groups>
587+
</properties>
588+
</profile>
589+
<profile>
590+
<id>crio-pipeline</id>
591+
<properties>
592+
<skipITs>false</skipITs>
593+
<groups>crio</groups>
592594
</properties>
593595
</profile>
594596
<profile>

integration-tests/src/test/java/oracle/weblogic/kubernetes/ItInitContainers.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,7 @@ void testAdminServerInitContainer() {
267267
@Test
268268
@DisplayName("Add initContainers to cluster1 and verify all managed server pods go through Init state ")
269269
@Tag("gate")
270+
@Tag("crio")
270271
void testClusterInitContainer() {
271272
assertTrue(createVerifyDomain(domain3Namespace, domain3Uid, "clusters"),
272273
"can't start or verify domain in namespace " + domain3Namespace);

integration-tests/src/test/java/oracle/weblogic/kubernetes/ItIntrospectVersion.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,7 @@ public static void initAll(@Namespaces(2) List<String> namespaces) {
230230
@Test
231231
@DisplayName("Test introSpectVersion starting a introspector and updating domain status")
232232
@Tag("gate")
233+
@Tag("crio")
233234
void testDomainIntrospectVersionNotRolling() {
234235

235236
// get the pod creation time stamps

integration-tests/src/test/java/oracle/weblogic/kubernetes/ItIstioMiiDomain.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,7 @@ public static void initAll(@Namespaces(2) List<String> namespaces) {
147147
@Order(1)
148148
@DisplayName("Create WebLogic Domain with mii model with istio")
149149
@Tag("gate")
150+
@Tag("crio")
150151
void testIstioModelInImage() {
151152

152153
// Create the repo secret to pull the image

integration-tests/src/test/java/oracle/weblogic/kubernetes/ItKubernetesDomainEvents.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,7 @@ public static void initAll(@Namespaces(6) List<String> namespaces) {
234234
@Test
235235
@DisplayName("Test domain events for various successful domain life cycle changes")
236236
@Tag("gate")
237+
@Tag("crio")
237238
void testDomainK8SEventsSuccess() {
238239
try {
239240
OffsetDateTime timestamp = now();

integration-tests/src/test/java/oracle/weblogic/kubernetes/ItLivenessProbeCustomization.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@ public static void initAll(@Namespaces(2) List<String> namespaces) {
135135
@Test
136136
@DisplayName("Test customization of the liveness probe")
137137
@Tag("gate")
138+
@Tag("crio")
138139
void testCustomLivenessProbeTriggered() {
139140
Domain domain1 = assertDoesNotThrow(() -> getDomainCustomResource(domainUid, domainNamespace),
140141
String.format("getDomainCustomResource failed with ApiException when tried to get domain %s in namespace %s",

integration-tests/src/test/java/oracle/weblogic/kubernetes/ItManageNameSpace.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,7 @@ public void tearDownAll() {
200200
@DisplayName("install operator helm chart and domain, "
201201
+ " using expression namespace management")
202202
@Tag("gate")
203+
@Tag("crio")
203204
void testNameSpaceManageByRegularExpression() {
204205
//create domain namespace
205206
String manageByExp1NS = "test-" + domainNamespaces[0];

integration-tests/src/test/java/oracle/weblogic/kubernetes/ItMiiDomainModelInPV.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,7 @@ public static void initAll(@Namespaces(2) List<String> namespaces) {
245245
@MethodSource("paramProvider")
246246
@DisplayName("Create MII domain with model and application file from PV and custon wdtModelHome")
247247
@Tag("gate")
248+
@Tag("crio")
248249
void testMiiDomainWithModelAndApplicationInPV(Entry<String, String> params) {
249250

250251
String domainUid = params.getKey();

integration-tests/src/test/java/oracle/weblogic/kubernetes/ItMiiDynamicUpdatePart1.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@ public void beforeEach() {
138138
@Order(1)
139139
@DisplayName("Add a work manager to a model-in-image domain using dynamic update")
140140
@Tag("gate")
141+
@Tag("crio")
141142
void testMiiAddWorkManager() {
142143

143144
// This test uses the WebLogic domain created in BeforeAll method

integration-tests/src/test/java/oracle/weblogic/kubernetes/ItMiiDynamicUpdatePart2.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ public void beforeEach() {
111111
@DisplayName("Changing Weblogic datasource URL and deleting application with CommitUpdateAndRoll "
112112
+ "using mii dynamic update")
113113
@Tag("gate")
114+
@Tag("crio")
114115
void testMiiDeleteAppChangeDBUrlWithCommitUpdateAndRoll() {
115116

116117
// This test uses the WebLogic domain created in BeforeAll method

0 commit comments

Comments
 (0)